From 48984137301115d1bf9bd375a4306442e91f017a Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Sun, 8 Feb 2009 20:19:58 +0100 Subject: [PATCH] Fix GCC warning 's might possibly be used uninitialized" --- src/editline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editline.c b/src/editline.c index 9a9b28c..ba15e58 100755 --- a/src/editline.c +++ b/src/editline.c @@ -1136,7 +1136,7 @@ static el_status_t c_complete(void) char *word, *new; SIZE_T len; int unique; - el_status_t s; + el_status_t s = 0; if (!rl_complete) { return ring_bell();