aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-16 20:12:00 +0000
committerFlorian Dold <florian.dold@gmail.com>2016-10-16 20:12:00 +0000
commit903a1d69865a112bc2f5e015aaf4f7c172d39556 (patch)
treea2d8f48d34702ab3ce9baef0b9c0a664bc6245d9 /src/util
parent4a9f4a60c780adce58334d7b083f921c8b7d39ef (diff)
downloadgnunet-903a1d69865a112bc2f5e015aaf4f7c172d39556.tar.gz
gnunet-903a1d69865a112bc2f5e015aaf4f7c172d39556.zip
fix comment about mq allocation
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mq.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 81c680e74..da6c0b86f 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -44,8 +44,9 @@ struct GNUNET_MQ_Envelope
44 struct GNUNET_MQ_Envelope *prev; 44 struct GNUNET_MQ_Envelope *prev;
45 45
46 /** 46 /**
47 * Actual allocated message header, 47 * Actual allocated message header.
48 * usually points to the end of the containing GNUNET_MQ_Envelope 48 * The GNUNET_MQ_Envelope header is allocated at
49 * the end of the message.
49 */ 50 */
50 struct GNUNET_MessageHeader *mh; 51 struct GNUNET_MessageHeader *mh;
51 52