From: Arun Prakash Jana Date: Tue, 23 Aug 2022 13:30:45 +0000 (+0530) Subject: Use correct data type for key collision detection X-Git-Tag: v4.7~17 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=f56a8caf652c34d2b507c606f3653e527e3b492a;p=nnn.git Use correct data type for key collision detection --- 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) {