tweaks: avoid a maybe-uninitialized-variable warning from gcc
parent
c8a87b4d2a
commit
65da6341ba
|
@ -2133,8 +2133,9 @@ void treat(char *tempfile_name, char *theprogram, bool spelling)
|
||||||
block_sigwinch(TRUE);
|
block_sigwinch(TRUE);
|
||||||
wait(&program_status);
|
wait(&program_status);
|
||||||
block_sigwinch(FALSE);
|
block_sigwinch(FALSE);
|
||||||
} else
|
}
|
||||||
errornumber = errno;
|
|
||||||
|
errornumber = errno;
|
||||||
|
|
||||||
/* Restore the terminal state and reenter curses mode. */
|
/* Restore the terminal state and reenter curses mode. */
|
||||||
terminal_init();
|
terminal_init();
|
||||||
|
|
Loading…
Reference in New Issue