Fix type signature of ncdu_init_pair()

This commit is contained in:
Yorhel 2022-10-16 08:49:44 +02:00
parent d6728bca95
commit 1548f9276f

View file

@ -27,4 +27,4 @@ chtype ncdu_acs_hline() { return ACS_VLINE ; }
chtype ncdu_acs_vline() { return ACS_HLINE ; } chtype ncdu_acs_vline() { return ACS_HLINE ; }
/* https://github.com/ziglang/zig/issues/8947 */ /* 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); }