snippet-start:[ec2.go.create_security_group.exit]
(msg string, args ...interface{})
| 121 | |
| 122 | // snippet-start:[ec2.go.create_security_group.exit] |
| 123 | func exitErrorf(msg string, args ...interface{}) { |
| 124 | fmt.Fprintf(os.Stderr, msg+"\n", args...) |
| 125 | os.Exit(1) |
| 126 | } |
| 127 | |
| 128 | // snippet-end:[ec2.go.create_security_group.exit] |
| 129 | // snippet-end:[ec2.go.create_security_group.complete] |