aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh-enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/gnunet-service-mesh-enc.c')
-rw-r--r--src/mesh/gnunet-service-mesh-enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh-enc.c b/src/mesh/gnunet-service-mesh-enc.c
index 22c70308d..47ac18d83 100644
--- a/src/mesh/gnunet-service-mesh-enc.c
+++ b/src/mesh/gnunet-service-mesh-enc.c
@@ -197,11 +197,11 @@ main (int argc, char *const *argv)
197 int ret; 197 int ret;
198 int r; 198 int r;
199 199
200 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n"); 200 fprintf (stderr, "main()\n");
201 r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run, 201 r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
202 NULL); 202 NULL);
203 ret = (GNUNET_OK == r) ? 0 : 1; 203 ret = (GNUNET_OK == r) ? 0 : 1;
204 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n"); 204 fprintf (stderr, "main() END\n");
205 205
206 return ret; 206 return ret;
207} 207}