From 1548f9276f48b9d7a378b2e491609fc947f93e6c Mon Sep 17 00:00:00 2001 From: Yorhel <git@yorhel.nl> Date: Sun, 16 Oct 2022 08:49:44 +0200 Subject: [PATCH] Fix type signature of ncdu_init_pair() --- src/ncurses_refs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncurses_refs.c b/src/ncurses_refs.c index 51faeb3..20a4ae2 100644 --- a/src/ncurses_refs.c +++ b/src/ncurses_refs.c @@ -27,4 +27,4 @@ chtype ncdu_acs_hline() { return ACS_VLINE ; } chtype ncdu_acs_vline() { return ACS_HLINE ; } /* https://github.com/ziglang/zig/issues/8947 */ -void ncdu_init_pair(short a,b,c) { init_pair(a,b,c); } +void ncdu_init_pair(short a, short b, short c) { init_pair(a,b,c); } -- GitLab