From 1608c8763f39d7f0b8246ddfeccbc2f8c05c78a5 Mon Sep 17 00:00:00 2001 From: NRK Date: Sat, 25 Dec 2021 11:26:47 +0600 Subject: [PATCH] avoid having function with unspecified arguments --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 5c7358cd..402f67ec 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1322,7 +1322,7 @@ static void msg(const char *message) } #ifdef KEY_RESIZE -static void handle_key_resize() +static void handle_key_resize(void) { endwin(); refresh(); -- 2.48.1