*: Fix linter errors

This commit is contained in:
ZyX
2017-03-19 17:36:04 +03:00
parent e78e75d85d
commit 88e1a17cde
2 changed files with 3 additions and 3 deletions

View File

@@ -2353,8 +2353,8 @@ inchar (
int tb_change_cnt int tb_change_cnt
) )
{ {
int len = 0; /* init for GCC */ int len = 0; // Init for GCC.
int retesc = FALSE; /* return ESC with gotint */ int retesc = false; // Return ESC with gotint.
if (wait_time == -1L || wait_time > 100L) { if (wait_time == -1L || wait_time > 100L) {
// flush output before waiting // flush output before waiting

View File

@@ -913,7 +913,7 @@ EXTERN int do_redraw INIT(= FALSE); /* extra redraw once */
EXTERN int need_highlight_changed INIT(= true); EXTERN int need_highlight_changed INIT(= true);
EXTERN char *used_shada_file INIT(= NULL); // name of the ShaDa file to use EXTERN char *used_shada_file INIT(= NULL); // name of the ShaDa file to use
EXTERN FILE *scriptout INIT(= NULL); /* stream to write script to */ EXTERN FILE *scriptout INIT(= NULL); ///< Stream to write script to.
// volatile because it is used in a signal handler. // volatile because it is used in a signal handler.
EXTERN volatile int got_int INIT(= false); // set to true when interrupt EXTERN volatile int got_int INIT(= false); // set to true when interrupt