mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 09:36:46 +00:00
Fix compiler warning about possibly uninitialized variable in libs/esl
This commit is contained in:
@@ -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)
|
static void print_banner(FILE *stream, int color)
|
||||||
{
|
{
|
||||||
int x;
|
int x = 0;
|
||||||
const char *use = NULL;
|
const char *use = NULL;
|
||||||
#include <cc.h>
|
#include <cc.h>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user