mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 04:21:24 +08:00
Fix GCC warning 's might possibly be used uninitialized"
This commit is contained in:
parent
b1e74f3de2
commit
4898413730
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user