diff options
Diffstat (limited to 'console-tools/resize.c')
-rw-r--r-- | console-tools/resize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/resize.c b/console-tools/resize.c index 7f72b9a46..01b1442f6 100644 --- a/console-tools/resize.c +++ b/console-tools/resize.c @@ -21,10 +21,10 @@ onintr(int sig ATTRIBUTE_UNUSED) } int resize_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int resize_main(int argc, char **argv) +int resize_main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) { struct termios new; - struct winsize w = { 0,0,0,0 }; + struct winsize w = { 0, 0, 0, 0 }; int ret; /* We use _stderr_ in order to make resize usable |