diff options
Diffstat (limited to 'miscutils/less.c')
-rw-r--r-- | miscutils/less.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index 065bf6f38..25b91c0fe 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -297,7 +297,7 @@ static void read_lines(void) | |||
297 | new_linepos += 7; | 297 | new_linepos += 7; |
298 | new_linepos &= (~7); | 298 | new_linepos &= (~7); |
299 | } | 299 | } |
300 | if (new_linepos >= w) | 300 | if ((int)new_linepos >= w) |
301 | break; | 301 | break; |
302 | linepos = new_linepos; | 302 | linepos = new_linepos; |
303 | } | 303 | } |
@@ -415,7 +415,7 @@ static void m_status_print(void) | |||
415 | printf(" lines %i-%i/%i ", | 415 | printf(" lines %i-%i/%i ", |
416 | cur_fline + 1, cur_fline + max_displayed_line + 1, | 416 | cur_fline + 1, cur_fline + max_displayed_line + 1, |
417 | max_fline + 1); | 417 | max_fline + 1); |
418 | if (cur_fline >= max_fline - max_displayed_line) { | 418 | if (cur_fline >= (int)(max_fline - max_displayed_line)) { |
419 | printf("(END)"NORMAL); | 419 | printf("(END)"NORMAL); |
420 | if (num_files > 1 && current_file != num_files) | 420 | if (num_files > 1 && current_file != num_files) |
421 | printf(HIGHLIGHT" - next: %s"NORMAL, files[current_file]); | 421 | printf(HIGHLIGHT" - next: %s"NORMAL, files[current_file]); |
@@ -444,7 +444,7 @@ static void status_print(void) | |||
444 | #endif | 444 | #endif |
445 | 445 | ||
446 | clear_line(); | 446 | clear_line(); |
447 | if (cur_fline && cur_fline < max_fline - max_displayed_line) { | 447 | if (cur_fline && cur_fline < (int)(max_fline - max_displayed_line)) { |
448 | bb_putchar(':'); | 448 | bb_putchar(':'); |
449 | return; | 449 | return; |
450 | } | 450 | } |
@@ -587,7 +587,7 @@ static void print_ascii(const char *str) | |||
587 | /* Print the buffer */ | 587 | /* Print the buffer */ |
588 | static void buffer_print(void) | 588 | static void buffer_print(void) |
589 | { | 589 | { |
590 | int i; | 590 | unsigned i; |
591 | 591 | ||
592 | move_cursor(0, 0); | 592 | move_cursor(0, 0); |
593 | for (i = 0; i <= max_displayed_line; i++) | 593 | for (i = 0; i <= max_displayed_line; i++) |
@@ -600,7 +600,7 @@ static void buffer_print(void) | |||
600 | 600 | ||
601 | static void buffer_fill_and_print(void) | 601 | static void buffer_fill_and_print(void) |
602 | { | 602 | { |
603 | int i; | 603 | unsigned i; |
604 | for (i = 0; i <= max_displayed_line && cur_fline + i <= max_fline; i++) { | 604 | for (i = 0; i <= max_displayed_line && cur_fline + i <= max_fline; i++) { |
605 | buffer[i] = flines[cur_fline + i]; | 605 | buffer[i] = flines[cur_fline + i]; |
606 | } | 606 | } |
@@ -662,7 +662,7 @@ static void open_file_and_read_lines(void) | |||
662 | /* Reinitialize everything for a new file - free the memory and start over */ | 662 | /* Reinitialize everything for a new file - free the memory and start over */ |
663 | static void reinitialize(void) | 663 | static void reinitialize(void) |
664 | { | 664 | { |
665 | int i; | 665 | unsigned i; |
666 | 666 | ||
667 | if (flines) { | 667 | if (flines) { |
668 | for (i = 0; i <= max_fline; i++) | 668 | for (i = 0; i <= max_fline; i++) |
@@ -763,7 +763,7 @@ static int less_getch(int pos) | |||
763 | static char* less_gets(int sz) | 763 | static char* less_gets(int sz) |
764 | { | 764 | { |
765 | char c; | 765 | char c; |
766 | int i = 0; | 766 | unsigned i = 0; |
767 | char *result = xzalloc(1); | 767 | char *result = xzalloc(1); |
768 | 768 | ||
769 | while (1) { | 769 | while (1) { |
@@ -836,7 +836,7 @@ static void change_file(int direction) | |||
836 | 836 | ||
837 | static void remove_current_file(void) | 837 | static void remove_current_file(void) |
838 | { | 838 | { |
839 | int i; | 839 | unsigned i; |
840 | 840 | ||
841 | if (num_files < 2) | 841 | if (num_files < 2) |
842 | return; | 842 | return; |
@@ -974,7 +974,7 @@ static void regex_process(void) | |||
974 | match_pos = 0; | 974 | match_pos = 0; |
975 | fill_match_lines(0); | 975 | fill_match_lines(0); |
976 | while (match_pos < num_matches) { | 976 | while (match_pos < num_matches) { |
977 | if (match_lines[match_pos] > cur_fline) | 977 | if ((int)match_lines[match_pos] > cur_fline) |
978 | break; | 978 | break; |
979 | match_pos++; | 979 | match_pos++; |
980 | } | 980 | } |
@@ -990,7 +990,7 @@ static void regex_process(void) | |||
990 | 990 | ||
991 | static void number_process(int first_digit) | 991 | static void number_process(int first_digit) |
992 | { | 992 | { |
993 | int i; | 993 | unsigned i; |
994 | int num; | 994 | int num; |
995 | char num_input[sizeof(int)*4]; /* more than enough */ | 995 | char num_input[sizeof(int)*4]; /* more than enough */ |
996 | char keypress; | 996 | char keypress; |
@@ -1120,7 +1120,7 @@ static void save_input_to_file(void) | |||
1120 | { | 1120 | { |
1121 | const char *msg = ""; | 1121 | const char *msg = ""; |
1122 | char *current_line; | 1122 | char *current_line; |
1123 | int i; | 1123 | unsigned i; |
1124 | FILE *fp; | 1124 | FILE *fp; |
1125 | 1125 | ||
1126 | print_statusline("Log file: "); | 1126 | print_statusline("Log file: "); |
@@ -1204,7 +1204,7 @@ static char opp_bracket(char bracket) | |||
1204 | 1204 | ||
1205 | static void match_right_bracket(char bracket) | 1205 | static void match_right_bracket(char bracket) |
1206 | { | 1206 | { |
1207 | int i; | 1207 | unsigned i; |
1208 | 1208 | ||
1209 | if (strchr(flines[cur_fline], bracket) == NULL) { | 1209 | if (strchr(flines[cur_fline], bracket) == NULL) { |
1210 | print_statusline("No bracket in top line"); | 1210 | print_statusline("No bracket in top line"); |