diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 22:28:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 22:28:26 +0000 |
commit | 5599502a550a7f892d4b73dceb2105a6916f83e6 (patch) | |
tree | 572ffa27892b1b24db86930044077dbb1565840f /include | |
parent | e125a683a77d14401644d15f38b7f578db723924 (diff) | |
download | busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.tar.gz busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.tar.bz2 busybox-w32-5599502a550a7f892d4b73dceb2105a6916f83e6.zip |
more -Wall warning fixes. -Wall is enabled now.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6f41184a9..4067063e6 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1048,7 +1048,7 @@ extern int update_passwd(const char *filename, const char *username, | |||
1048 | const char *new_pw); | 1048 | const char *new_pw); |
1049 | 1049 | ||
1050 | /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */ | 1050 | /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */ |
1051 | int get_terminal_width_height(int fd, int *width, int *height); | 1051 | int get_terminal_width_height(int fd, unsigned *width, unsigned *height); |
1052 | 1052 | ||
1053 | /* NB: "unsigned request" is crucial! "int request" will break some arches! */ | 1053 | /* NB: "unsigned request" is crucial! "int request" will break some arches! */ |
1054 | int ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))); | 1054 | int ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))); |