1
1

quit.c: Remove two unused variables

Этот коммит содержится в:
Yorhel 2015-09-20 07:53:05 +02:00
родитель e96cc36d56
Коммит 078369b8c5

Просмотреть файл

@ -27,14 +27,11 @@
#include <ncurses.h>
/* extern? */ int page, start;
int quit_key(int ch) {
switch(ch) {
case 'y':
case 'Y':
return 1;
break;
default:
pstate = ST_BROWSE;
}
@ -49,7 +46,5 @@ void quit_draw() {
}
void quit_init() {
page = 1;
start = 0;
pstate = ST_QUIT;
}