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 | |
parent | 5a2997de72d9e57daed8196b0b9e799b604f212d (diff) | |
download | busybox-69d863b6c609ac0523c546e408cc5d2063073425.tar.gz |
And fix the error I just introduced. :)
-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) { } strcpy(filename, (inp_stdin) ? bb_msg_standard_input : files[0]); - get_terminal_width_height(0, &width, &height) + get_terminal_width_height(0, &width, &height); data_readlines(); tcgetattr(fileno(inp), &term_orig); term_vi = term_orig; |