Static analysis fix.

This commit is contained in:
Ryan C. Gordon 2017-07-17 12:38:19 -04:00
parent 8c3501491c
commit cdba81f5c4
1 changed files with 2 additions and 2 deletions

View File

@ -873,8 +873,8 @@ static int cmd_cat(char *args)
static int cmd_cat2(char *args)
{
PHYSFS_File *f1;
PHYSFS_File *f2;
PHYSFS_File *f1 = NULL;
PHYSFS_File *f2 = NULL;
char *fname1;
char *fname2;
char *ptr;