missing check
[oweals/gnunet.git] / doc / gnunet-c-tutorial.tex
index 86d68b84b704dd06a53738a19803eda0afddbfcf..70981b1387999e24dec334dc9cea341ea7c849bf 100644 (file)
@@ -711,7 +711,7 @@ static size_t
 transmit_cb (void *cls, size_t size, void *buf)
 {
   // ...
-  if (NULL == buf) { handle_error(); return 0; }
+  if (NULL == buf) { /* handle error here */; return 0; }
   GNUNET_assert (size >= msg_size);
   memcpy (buf, my_msg, msg_size);
   // ...