Replace weird conditional with non-weird conditional.

This commit is contained in:
Alcaro 2014-10-10 22:44:35 +02:00
parent 908001a861
commit 4938911841
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ size_t file_list_get_directory_ptr(const file_list_t *list)
void file_list_pop(file_list_t *list, size_t *directory_ptr)
{
if (!(list->size == 0))
if (list->size != 0)
{
--list->size;
#ifdef HAVE_MENU