watch: fixing uninitialized variable

This commit is contained in:
Jaromir Capik 2014-09-08 18:24:28 +02:00
parent e428a27af9
commit 578cce6730

View File

@ -473,7 +473,7 @@ static int run_command(char *restrict command, char **restrict command_argv)
reset_ansi();
for (y = show_title; y < height; y++) {
int eolseen = 0, tabpending = 0, tabwaspending;
int eolseen = 0, tabpending = 0, tabwaspending = 0;
set_ansi_attribute(-1);
#ifdef WITH_WATCH8BIT
wint_t carry = WEOF;