From 7ce2009fad00f4acff8073ad6d041eb2d1de3c76 Mon Sep 17 00:00:00 2001 From: William King Date: Mon, 2 Jun 2014 08:32:56 -0700 Subject: [PATCH] Fix compiler warning about possibly uninitialized variable in libs/esl --- libs/esl/fs_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/esl/fs_cli.c b/libs/esl/fs_cli.c index 55b299b570..6e4446524b 100644 --- a/libs/esl/fs_cli.c +++ b/libs/esl/fs_cli.c @@ -1000,7 +1000,7 @@ static const char *inf = "Type /help to see a list of commands\n\n\n"; static void print_banner(FILE *stream, int color) { - int x; + int x = 0; const char *use = NULL; #include