changed all calls to assert() to uhub_assert()

This commit is contained in:
Tilka
2012-05-02 21:06:46 +02:00
parent ccded3f642
commit d49127b507
11 changed files with 13 additions and 13 deletions

View File

@@ -112,4 +112,4 @@ const char* cbuf_get(struct cbuffer* buf)
size_t cbuf_size(struct cbuffer* buf)
{
return buf->size;
}
}

View File

@@ -84,7 +84,7 @@ void list_append(struct linked_list* list, void* data_ptr)
void list_remove(struct linked_list* list, void* data_ptr)
{
struct node* node = list->first;
assert(data_ptr);
uhub_assert(data_ptr);
list->iterator = NULL;