]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix compiler warning about possibly uninitialized variable in libs/esl
authorWilliam King <william.king@quentustech.com>
Mon, 2 Jun 2014 15:32:56 +0000 (08:32 -0700)
committerWilliam King <william.king@quentustech.com>
Mon, 2 Jun 2014 15:33:05 +0000 (08:33 -0700)
libs/esl/fs_cli.c

index 55b299b57024eed150bffe8712ab7d3c933be523..6e4446524b6887c6b99d198ecfa7407d2ca919d6 100644 (file)
@@ -1000,7 +1000,7 @@ static const char *inf = "Type /help <enter> 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 <cc.h>