summaryrefslogtreecommitdiff
path: root/examples/utils.c
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2013-04-11 10:53:59 -0700
committerAlan Antonuk <alan.antonuk@gmail.com>2013-04-17 09:56:29 -0700
commita2a91f532b7e648b2468acad39ae7169ac020d0a (patch)
tree78010b44a0e00011cc17787d144abc7dc358c560 /examples/utils.c
parent317a56cfffb05e72713bfa8a8e7236b7c39ddb8d (diff)
downloadrabbitmq-c-github-ask-a2a91f532b7e648b2468acad39ae7169ac020d0a.tar.gz
Fix code formatting to match the rest of the lib
Diffstat (limited to 'examples/utils.c')
-rw-r--r--examples/utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/utils.c b/examples/utils.c
index 0830738..4b00470 100644
--- a/examples/utils.c
+++ b/examples/utils.c
@@ -56,7 +56,8 @@ void die(const char *fmt, ...)
exit(1);
}
-void die_on_error(int x, char const *context) {
+void die_on_error(int x, char const *context)
+{
if (x < 0) {
char *errstr = amqp_error_string(-x);
fprintf(stderr, "%s: %s\n", context, errstr);