From 6de597812729383b7ebe02b1ebaee4bacca9c01b Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Tue, 7 Aug 2012 13:37:04 +0200 Subject: [PATCH] Resolve signed/unsigned comparison warning --- completion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completion.c b/completion.c index 92ed7de..3fd0611 100644 --- a/completion.c +++ b/completion.c @@ -32,7 +32,7 @@ compare_case_insensitive(const char* str1, const char* str2) static girara_list_t* list_files(zathura_t* zathura, const char* current_path, const char* current_file, - int current_file_length, bool is_dir, bool check_file_ext) + unsigned int current_file_length, bool is_dir, bool check_file_ext) { if (zathura == NULL || zathura->ui.session == NULL || current_path == NULL) { return NULL;