[bim] Fix type of some vars used for bim_getch

This commit is contained in:
K. Lange 2018-08-20 12:58:49 +09:00
parent 9435550e18
commit cf21613df0

View File

@ -3158,7 +3158,7 @@ done:
* where the command input bar is rendered.
*/
void command_mode(void) {
char c;
int c;
char buffer[1024] = {0};
int buffer_len = 0;
@ -3265,7 +3265,7 @@ void draw_search_match(int line, char * buffer, int redraw_buffer) {
* Search text for substring match.
*/
void search_mode(void) {
char c;
int c;
char buffer[1024] = {0};
int buffer_len = 0;