Fix GCC warning 's might possibly be used uninitialized"

This commit is contained in:
Joachim Nilsson 2009-02-08 20:19:58 +01:00
parent b1e74f3de2
commit 4898413730

View File

@ -1136,7 +1136,7 @@ static el_status_t c_complete(void)
char *word, *new; char *word, *new;
SIZE_T len; SIZE_T len;
int unique; int unique;
el_status_t s; el_status_t s = 0;
if (!rl_complete) { if (!rl_complete) {
return ring_bell(); return ring_bell();