aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/test_mesh_local_1.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2011-09-14 15:27:34 +0000
committerBart Polot <bart@net.in.tum.de>2011-09-14 15:27:34 +0000
commit4a9c4c7275860ca9b558eb7354ddd39af9cd8c3d (patch)
treec37d619d78e8af4fd098ff548ad813ee16143d18 /src/mesh/test_mesh_local_1.c
parentc9e58a448ef96bf6eecae21cafc82b64ef551662 (diff)
downloadgnunet-4a9c4c7275860ca9b558eb7354ddd39af9cd8c3d.tar.gz
gnunet-4a9c4c7275860ca9b558eb7354ddd39af9cd8c3d.zip
Fixed compiler warning in tests
Diffstat (limited to 'src/mesh/test_mesh_local_1.c')
-rw-r--r--src/mesh/test_mesh_local_1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/test_mesh_local_1.c b/src/mesh/test_mesh_local_1.c
index 5c45f2895..d531dab6f 100644
--- a/src/mesh/test_mesh_local_1.c
+++ b/src/mesh/test_mesh_local_1.c
@@ -36,8 +36,8 @@ static struct GNUNET_OS_Process *arm_pid;
36static struct GNUNET_MESH_Handle *mesh_peer_1; 36static struct GNUNET_MESH_Handle *mesh_peer_1;
37static struct GNUNET_MESH_Handle *mesh_peer_2; 37static struct GNUNET_MESH_Handle *mesh_peer_2;
38static struct GNUNET_MESH_Tunnel *t; 38static struct GNUNET_MESH_Tunnel *t;
39static int one = 1; 39static unsigned int one = 1;
40static int two = 2; 40static unsigned int two = 2;
41 41
42static int result; 42static int result;
43static GNUNET_SCHEDULER_TaskIdentifier abort_task; 43static GNUNET_SCHEDULER_TaskIdentifier abort_task;