aboutsummaryrefslogtreecommitdiff
path: root/src/util/mq.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/mq.c')
-rw-r--r--src/util/mq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index b73cf176f..14e0816e2 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -398,9 +398,9 @@ const struct GNUNET_MessageHeader *
398GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq) 398GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq)
399{ 399{
400 if (NULL == mq->current_envelope) 400 if (NULL == mq->current_envelope)
401 GNUNET_abort (); 401 GNUNET_assert (0);
402 if (NULL == mq->current_envelope->mh) 402 if (NULL == mq->current_envelope->mh)
403 GNUNET_abort (); 403 GNUNET_assert (0);
404 return mq->current_envelope->mh; 404 return mq->current_envelope->mh;
405} 405}
406 406