Remove list assertion when removing element that is not in the list.

Breaks autotest.
This commit is contained in:
Jan Vidar Krey 2012-05-01 20:39:49 +02:00
parent 74ca5a0a33
commit 458c7fa741
1 changed files with 0 additions and 1 deletions

View File

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