Skip to content
Snippets Groups Projects
Commit 1548f927 authored by Yorhel's avatar Yorhel
Browse files

Fix type signature of ncdu_init_pair()

parent d6728bca
No related branches found
No related tags found
No related merge requests found
...@@ -27,4 +27,4 @@ chtype ncdu_acs_hline() { return ACS_VLINE ; } ...@@ -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); }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment