summaryrefslogtreecommitdiff
path: root/coverity/model.c
diff options
context:
space:
mode:
Diffstat (limited to 'coverity/model.c')
-rw-r--r--coverity/model.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/coverity/model.c b/coverity/model.c
index f4776b9..dc1ad98 100644
--- a/coverity/model.c
+++ b/coverity/model.c
@@ -1,9 +1,10 @@
/* Functions to help coverity do static analysis on rabbitmq-c */
-typedef struct {} amqp_rpc_reply_t;
+typedef struct {
+} amqp_rpc_reply_t;
/* librabbitmq/amqp_private.h */
-void amqp_abort(const char *fmt, ...) { __coverity_panic__(); }
+void amqp_abort(const char* fmt, ...) { __coverity_panic__(); }
/* tools/common.h */
void die(const char* fmt, ...) { __coverity_panic__(); }
@@ -12,5 +13,5 @@ void die_amqp_error(int err, const char* fmt, ...) { __coverity_panic__(); }
void die_rpc(amqp_rpc_reply_t r, const char* fmt, ...) { __coverity_panic__(); }
/* examples/utils.h */
-void die_on_amqp_error(amqp_rpc_reply_t *r) { __coverity_panic__(); }
+void die_on_amqp_error(amqp_rpc_reply_t* r) { __coverity_panic__(); }
void die_on_error(int r) { __coverity_panic__(); }