summaryrefslogtreecommitdiff
path: root/examples/amqp_producer.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/amqp_producer.c')
-rw-r--r--examples/amqp_producer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/amqp_producer.c b/examples/amqp_producer.c
index 948d8f6..b6fca58 100644
--- a/examples/amqp_producer.c
+++ b/examples/amqp_producer.c
@@ -101,7 +101,7 @@ static void send_batch(amqp_connection_state_t conn,
{
uint64_t stop_time = now_microseconds();
- int total_delta = stop_time - start_time;
+ int total_delta = (int)(stop_time - start_time);
printf("PRODUCER - Message count: %d\n", message_count);
printf("Total time, milliseconds: %d\n", total_delta / 1000);