summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2022-10-16 08:49:44 +0200
committerYorhel <git@yorhel.nl>2022-10-16 08:49:47 +0200
commit1548f9276f48b9d7a378b2e491609fc947f93e6c (patch)
tree0073e2978237ffc9008ab981a3b36353c61a9b77
parentd6728bca9594cc45703c299dca5db66d917c0388 (diff)
Fix type signature of ncdu_init_pair()
-rw-r--r--src/ncurses_refs.c2
1 files changed, 1 insertions, 1 deletions
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); }