Fix compiler warning about possibly uninitialized variable in libs/esl

This commit is contained in:
William King 2014-06-02 08:32:56 -07:00
parent e992c4c4d8
commit 7ce2009fad
1 changed files with 1 additions and 1 deletions

View 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>