summaryrefslogtreecommitdiff
path: root/tools/declare_queue.c
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2017-12-04 23:23:22 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2017-12-05 00:19:29 -0800
commitafaab64a3f4c6977d66811cb7235431a085de0b2 (patch)
treee59fbd4ca9cbb8fcb0649329bc2b3c87b0ed3191 /tools/declare_queue.c
parent67048550b9ac3957fb29b7f9e7bf4b8ee3e9bc73 (diff)
downloadrabbitmq-c-afaab64a3f4c6977d66811cb7235431a085de0b2.tar.gz
Format code with clang-format
Diffstat (limited to 'tools/declare_queue.c')
-rw-r--r--tools/declare_queue.c30
1 files changed, 9 insertions, 21 deletions
diff --git a/tools/declare_queue.c b/tools/declare_queue.c
index 15f0b2a..0b98580 100644
--- a/tools/declare_queue.c
+++ b/tools/declare_queue.c
@@ -44,25 +44,18 @@
#include "common.h"
-int main(int argc, const char **argv)
-{
+int main(int argc, const char **argv) {
amqp_connection_state_t conn;
static char *queue = NULL;
static int durable = 0;
struct poptOption options[] = {
- INCLUDE_OPTIONS(connect_options),
- {
- "queue", 'q', POPT_ARG_STRING, &queue, 0,
- "the queue name to declare, or the empty string", "queue"
- },
- {
- "durable", 'd', POPT_ARG_VAL, &durable, 1,
- "declare a durable queue", NULL
- },
- POPT_AUTOHELP
- { NULL, '\0', 0, NULL, 0, NULL, NULL }
- };
+ INCLUDE_OPTIONS(connect_options),
+ {"queue", 'q', POPT_ARG_STRING, &queue, 0,
+ "the queue name to declare, or the empty string", "queue"},
+ {"durable", 'd', POPT_ARG_VAL, &durable, 1, "declare a durable queue",
+ NULL},
+ POPT_AUTOHELP{NULL, '\0', 0, NULL, 0, NULL, NULL}};
process_all_options(argc, argv, options);
@@ -73,13 +66,8 @@ int main(int argc, const char **argv)
conn = make_connection();
{
- amqp_queue_declare_ok_t *reply = amqp_queue_declare(conn, 1,
- cstring_bytes(queue),
- 0,
- durable,
- 0,
- 0,
- amqp_empty_table);
+ amqp_queue_declare_ok_t *reply = amqp_queue_declare(
+ conn, 1, cstring_bytes(queue), 0, durable, 0, 0, amqp_empty_table);
if (reply == NULL) {
die_rpc(amqp_get_rpc_reply(conn), "queue.declare");
}