diff options
author | Rob Landley <rob@landley.net> | 2006-05-25 21:13:30 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-25 21:13:30 +0000 |
commit | 69d863b6c609ac0523c546e408cc5d2063073425 (patch) | |
tree | a506e1dea0ada1408094572924e69baa963d9523 /miscutils/less.c | |
parent | 5a2997de72d9e57daed8196b0b9e799b604f212d (diff) | |
download | busybox-w32-69d863b6c609ac0523c546e408cc5d2063073425.tar.gz busybox-w32-69d863b6c609ac0523c546e408cc5d2063073425.tar.bz2 busybox-w32-69d863b6c609ac0523c546e408cc5d2063073425.zip |
And fix the error I just introduced. :)
Diffstat (limited to 'miscutils/less.c')
-rw-r--r-- | miscutils/less.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index 7de183656..940b1c865 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -1133,7 +1133,7 @@ int less_main(int argc, char **argv) { | |||
1133 | } | 1133 | } |
1134 | 1134 | ||
1135 | strcpy(filename, (inp_stdin) ? bb_msg_standard_input : files[0]); | 1135 | strcpy(filename, (inp_stdin) ? bb_msg_standard_input : files[0]); |
1136 | get_terminal_width_height(0, &width, &height) | 1136 | get_terminal_width_height(0, &width, &height); |
1137 | data_readlines(); | 1137 | data_readlines(); |
1138 | tcgetattr(fileno(inp), &term_orig); | 1138 | tcgetattr(fileno(inp), &term_orig); |
1139 | term_vi = term_orig; | 1139 | term_vi = term_orig; |