mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
Fix type signature of ncdu_init_pair()
This commit is contained in:
parent
d6728bca95
commit
1548f9276f
1 changed files with 1 additions and 1 deletions
|
|
@ -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); }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue