use "0" instead of "false"

otherwise compilation breaks when using a C90 compiler
This commit is contained in:
Tilka 2012-04-21 13:35:06 +02:00
parent 27ceb7ad33
commit 776f7d0bff
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ void list_remove(struct linked_list* list, void* data_ptr)
}
node = node->next;
}
uhub_assert(false);
uhub_assert(0);
}