aboutsummaryrefslogtreecommitdiff
path: root/src/util/mq.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-16 22:15:51 +0000
committerFlorian Dold <florian.dold@gmail.com>2016-10-16 22:15:51 +0000
commit49dea09600d1249a265cd6b6b654b3f926c7afbe (patch)
treedf106469998ae8c325e8e9fb9279e89b8dd73acd /src/util/mq.c
parent99cf32413601c3348f665c4132a6a096e00f3b54 (diff)
turn if into assert
Diffstat (limited to 'src/util/mq.c')
-rw-r--r--src/util/mq.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 0ada6e9b0c..312fb3ff01 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -612,10 +612,8 @@ GNUNET_MQ_set_handlers_closure (struct GNUNET_MQ_Handle *mq,
const struct GNUNET_MessageHeader *
GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq)
{
- if (NULL == mq->current_envelope)
- GNUNET_assert (0);
- if (NULL == mq->current_envelope->mh)
- GNUNET_assert (0);
+ GNUNET_assert (NULL != mq->current_envelope);
+ GNUNET_assert (NULL == mq->current_envelope->mh);
return mq->current_envelope->mh;
}