From 49389118418f8c6ea83fce9bb55e8fc6ff7a5d44 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Fri, 10 Oct 2014 22:44:35 +0200 Subject: [PATCH] Replace weird conditional with non-weird conditional. --- file_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file_list.c b/file_list.c index 60f4bd173f..471295ca7a 100644 --- a/file_list.c +++ b/file_list.c @@ -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