aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2011-06-01 18:41:28 +0000
committerBart Polot <bart@net.in.tum.de>2011-06-01 18:41:28 +0000
commit83adfc4bd5b85d0ab8ecbafeaad8324c396dbfac (patch)
treefd50f0be44c433b61b7ad810ff9f97966bfe50c5 /src/mesh
parentce78fbe56222d46e9663f71c67b7766f461b3df9 (diff)
downloadgnunet-83adfc4bd5b85d0ab8ecbafeaad8324c396dbfac.tar.gz
gnunet-83adfc4bd5b85d0ab8ecbafeaad8324c396dbfac.zip
Fixed type in initializer
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/test_mesh_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/test_mesh_api.c b/src/mesh/test_mesh_api.c
index 4c4bf9c4c..c2a03d3b5 100644
--- a/src/mesh/test_mesh_api.c
+++ b/src/mesh/test_mesh_api.c
@@ -69,8 +69,8 @@ test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
69 struct GNUNET_CONFIGURATION_Handle *cfg = cls; 69 struct GNUNET_CONFIGURATION_Handle *cfg = cls;
70 GNUNET_MESH_ApplicationType app; 70 GNUNET_MESH_ApplicationType app;
71 71
72 test_task = 0; 72 test_task = (GNUNET_SCHEDULER_TaskIdentifier) 0;
73 app = 0; 73 app = (GNUNET_MESH_ApplicationType) 0;
74 mesh = GNUNET_MESH_connect(cfg, NULL, NULL, handlers, &app); 74 mesh = GNUNET_MESH_connect(cfg, NULL, NULL, handlers, &app);
75 if(NULL == mesh) { 75 if(NULL == mesh) {
76 GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Couldn't connect to mesh :(\n"); 76 GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Couldn't connect to mesh :(\n");