From 776f7d0bff5c3a782097152e3effda1d954d53bb Mon Sep 17 00:00:00 2001 From: Tilka Date: Sat, 21 Apr 2012 13:35:06 +0200 Subject: [PATCH] use "0" instead of "false" otherwise compilation breaks when using a C90 compiler --- src/util/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/list.c b/src/util/list.c index 6d84ed9..7a14ff5 100644 --- a/src/util/list.c +++ b/src/util/list.c @@ -111,7 +111,7 @@ void list_remove(struct linked_list* list, void* data_ptr) } node = node->next; } - uhub_assert(false); + uhub_assert(0); }