From 1a58aa36a2006164a2db15734380a96a4ecb57af Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Tue, 7 Feb 2012 15:54:46 +0000 Subject: [PATCH] - Fix compile error on buildbots --- src/mesh/test_mesh_small.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/test_mesh_small.c b/src/mesh/test_mesh_small.c index 465e00879..ab0f65755 100644 --- a/src/mesh/test_mesh_small.c +++ b/src/mesh/test_mesh_small.c @@ -361,7 +361,7 @@ data_callback (void *cls, struct GNUNET_MESH_Tunnel *tunnel, void **tunnel_ctx, return GNUNET_OK; end_time = GNUNET_TIME_absolute_get(); total_time = GNUNET_TIME_absolute_get_difference(start_time, end_time); - FPRINTF (stderr, "\nTest time %lu ms\n", total_time.rel_value); + FPRINTF (stderr, "\nTest time %llu ms\n", total_time.rel_value); FPRINTF (stderr, "Test bandwidth: %f kb/s\n", 4000.0 / total_time.rel_value); FPRINTF (stderr, "Test throughput: %f packets/s\n", -- 2.25.1