aboutsummaryrefslogtreecommitdiff
path: root/doc/tutorial-examples/003.c
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial-examples/003.c')
-rw-r--r--doc/tutorial-examples/003.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/tutorial-examples/003.c b/doc/tutorial-examples/003.c
index d13681ca6..f1105a070 100644
--- a/doc/tutorial-examples/003.c
+++ b/doc/tutorial-examples/003.c
@@ -1,7 +1,7 @@
1 struct GNUNET_MQ_MessageHandlers handlers[] = { 1struct GNUNET_MQ_MessageHandlers handlers[] = {
2 // ... 2 // ...
3 GNUNET_MQ_handler_end () 3 GNUNET_MQ_handler_end ()
4 }; 4};
5 struct GNUNET_MQ_Handle *mq; 5struct GNUNET_MQ_Handle *mq;
6 6
7 mq = GNUNET_CLIENT_connect (cfg, "service-name", handlers, &error_cb, NULL); 7mq = GNUNET_CLIENT_connect (cfg, "service-name", handlers, &error_cb, NULL);