summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/amqps_producer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/amqps_producer.c b/examples/amqps_producer.c
index 25f850b..7d3a24b 100644
--- a/examples/amqps_producer.c
+++ b/examples/amqps_producer.c
@@ -103,7 +103,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);