From f56a8caf652c34d2b507c606f3653e527e3b492a Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 23 Aug 2022 19:00:45 +0530 Subject: [PATCH] Use correct data type for key collision detection --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 924970db..77fe55a3 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -8102,7 +8102,7 @@ malloc_1: static void check_key_collision(void) { - int key; + wint_t key; bool bitmap[KEY_MAX] = {FALSE}; for (ullong_t i = 0; i < ELEMENTS(bindings); ++i) {