aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-20 15:37:11 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-20 15:37:11 +0000
commit49b1ddee6e5e6f4043d7a084705e0a115ee64404 (patch)
treebf5396e5227b60fb0f29ef876202310af83a938d /src/util
parent32b8d7b6b2a32bca39e3ee7311df9f98615ac387 (diff)
downloadgnunet-49b1ddee6e5e6f4043d7a084705e0a115ee64404.tar.gz
gnunet-49b1ddee6e5e6f4043d7a084705e0a115ee64404.zip
-doxygen and minor style fixes
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 7cea0ca9c..d34850b8c 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -60,7 +60,7 @@ struct GNUNET_MQ_Envelope
60 GNUNET_MQ_NotifyCallback sent_cb; 60 GNUNET_MQ_NotifyCallback sent_cb;
61 61
62 /** 62 /**
63 * Closure for send_cb 63 * Closure for @e send_cb
64 */ 64 */
65 void *sent_cls; 65 void *sent_cls;
66}; 66};
@@ -136,9 +136,9 @@ struct GNUNET_MQ_Handle
136 GNUNET_SCHEDULER_TaskIdentifier continue_task; 136 GNUNET_SCHEDULER_TaskIdentifier continue_task;
137 137
138 /** 138 /**
139 * Next id that should be used for the assoc_map, 139 * Next id that should be used for the @e assoc_map,
140 * initialized lazily to a random value together with 140 * initialized lazily to a random value together with
141 * assoc_map 141 * @e assoc_map
142 */ 142 */
143 uint32_t assoc_id; 143 uint32_t assoc_id;
144}; 144};