The unified diff between revisions [fdd44441..] and [1d86a4f0..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'queue.c'

#
#
# patch "queue.c"
#  from [ccb24cf04c2fae9ff0008f7181239fff1e93f82b]
#    to [0b2bee6c831b234a3fba77c4ae6d598126a3c07c]
#
============================================================
--- queue.c	ccb24cf04c2fae9ff0008f7181239fff1e93f82b
+++ queue.c	0b2bee6c831b234a3fba77c4ae6d598126a3c07c
@@ -42,7 +42,7 @@ void* dequeue(struct Queue* queue) {

 	void* ret;
 	struct Link* oldhead;
-	assert(!isempty(queue));
+	dropbear_assert(!isempty(queue));

 	ret = queue->head->item;
 	oldhead = queue->head;
@@ -62,7 +62,7 @@ void *examine(struct Queue* queue) {

 void *examine(struct Queue* queue) {

-	assert(!isempty(queue));
+	dropbear_assert(!isempty(queue));
 	return queue->head->item;
 }