Fix compilation errors/warning with gcc-5.4.0 (#137)

Warning are like this:
 error: ‘delimiter’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
This commit is contained in:
geaaru
2017-08-15 08:56:22 +02:00
committed by Johan Wikman
parent 7021041804
commit 3485a32731
13 changed files with 25 additions and 25 deletions

View File

@ -1669,7 +1669,7 @@ static struct
static unsigned long
convert_arg(char *arg, int arg_type)
{
unsigned long rval;
unsigned long rval = 0;
switch (arg_type)
{