commit 31257dd5764706625ca42df8e536e8c7bb755b1a
parent 57c8e6a0e4cd7d662473ad8d46992d893424bdc4
Author: Bart Polot <bart@net.in.tum.de>
Date: Thu, 6 Mar 2014 01:41:11 +0000
- fix warning
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mesh/test_mesh_small.c b/src/mesh/test_mesh_small.c
@@ -619,12 +619,12 @@ stats_iterator (void *cls, const char *subsystem, const char *name,
cls, subsystem, name, value);
if (0 == strncmp("# keepalives sent", name,
strlen("# keepalives sent"))
- && 0 == cls)
+ && 0 == (long) cls)
ka_sent = value;
if (0 == strncmp("# keepalives received", name,
strlen ("# keepalives received"))
- && 4 == cls)
+ && 4 == (long) cls)
{
ka_received = value;
GNUNET_log (GNUNET_ERROR_TYPE_INFO, " sent: %u, received: %u\n",