watch: fixing uninitialized variable
This commit is contained in:
parent
e428a27af9
commit
578cce6730
2
watch.c
2
watch.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user