diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-12 03:14:17 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-12 03:14:17 +0200 |
commit | d8b989f22dbb21642ada9696ad7e8358464e20cc (patch) | |
tree | 414bb5c25323ca44a36be317d00565189568dd32 | |
parent | 69d69e2cb898f77827d2cf2c06a7f6fcd5157567 (diff) | |
download | busybox-w32-d8b989f22dbb21642ada9696ad7e8358464e20cc.tar.gz busybox-w32-d8b989f22dbb21642ada9696ad7e8358464e20cc.tar.bz2 busybox-w32-d8b989f22dbb21642ada9696ad7e8358464e20cc.zip |
more: style fix. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/more.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 55694e434..9216b6137 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -31,7 +31,7 @@ struct globals { | |||
31 | 31 | ||
32 | #define setTermSettings(fd, argp) do { \ | 32 | #define setTermSettings(fd, argp) do { \ |
33 | if (ENABLE_FEATURE_USE_TERMIOS) tcsetattr(fd, TCSANOW, argp); \ | 33 | if (ENABLE_FEATURE_USE_TERMIOS) tcsetattr(fd, TCSANOW, argp); \ |
34 | } while(0) | 34 | } while (0) |
35 | #define getTermSettings(fd, argp) tcgetattr(fd, argp) | 35 | #define getTermSettings(fd, argp) tcgetattr(fd, argp) |
36 | 36 | ||
37 | static void gotsig(int sig UNUSED_PARAM) | 37 | static void gotsig(int sig UNUSED_PARAM) |
@@ -46,7 +46,7 @@ static void gotsig(int sig UNUSED_PARAM) | |||
46 | int more_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 46 | int more_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
47 | int more_main(int argc UNUSED_PARAM, char **argv) | 47 | int more_main(int argc UNUSED_PARAM, char **argv) |
48 | { | 48 | { |
49 | int c = c; /* for gcc */ | 49 | int c = c; /* for compiler */ |
50 | int lines; | 50 | int lines; |
51 | int input = 0; | 51 | int input = 0; |
52 | int spaces = 0; | 52 | int spaces = 0; |