aboutsummaryrefslogtreecommitdiff
path: root/doc/gnunet-c-tutorial.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gnunet-c-tutorial.tex')
-rw-r--r--doc/gnunet-c-tutorial.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gnunet-c-tutorial.tex b/doc/gnunet-c-tutorial.tex
index 86d68b84b..70981b138 100644
--- a/doc/gnunet-c-tutorial.tex
+++ b/doc/gnunet-c-tutorial.tex
@@ -711,7 +711,7 @@ static size_t
711transmit_cb (void *cls, size_t size, void *buf) 711transmit_cb (void *cls, size_t size, void *buf)
712{ 712{
713 // ... 713 // ...
714 if (NULL == buf) { handle_error(); return 0; } 714 if (NULL == buf) { /* handle error here */; return 0; }
715 GNUNET_assert (size >= msg_size); 715 GNUNET_assert (size >= msg_size);
716 memcpy (buf, my_msg, msg_size); 716 memcpy (buf, my_msg, msg_size);
717 // ... 717 // ...