mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 14:42:07 +00:00
fix a couple of warnings
This commit is contained in:
parent
76385372f3
commit
2a96ffb19b
1 changed files with 2 additions and 1 deletions
|
@ -37,6 +37,7 @@
|
|||
#include "QF/hash.h"
|
||||
#include "QF/qfplist.h"
|
||||
#include "QF/qtypes.h"
|
||||
#include "QF/sys.h"
|
||||
|
||||
static plitem_t *PL_ParsePropertyListItem (pldata_t *);
|
||||
static qboolean PL_SkipSpace (pldata_t *);
|
||||
|
@ -477,7 +478,7 @@ PL_GetPropertyList (const char *string)
|
|||
pl->error = NULL;
|
||||
pl->line = 1;
|
||||
|
||||
if (newpl = PL_ParsePropertyListItem (pl)) {
|
||||
if ((newpl = PL_ParsePropertyListItem (pl))) {
|
||||
free (pl);
|
||||
return newpl;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue