mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[util] Fix some test bitrot
This commit is contained in:
parent
fd97bb1456
commit
407ea15e35
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ test_string_io (const char *str)
|
||||||
item = PL_NewString (str);
|
item = PL_NewString (str);
|
||||||
saved = PL_WritePropertyList (item);
|
saved = PL_WritePropertyList (item);
|
||||||
PL_Free (item);
|
PL_Free (item);
|
||||||
item = PL_GetPropertyList (saved);
|
item = PL_GetPropertyList (saved, 0);
|
||||||
res = PL_String (item);
|
res = PL_String (item);
|
||||||
if (!strcmp (str, res))
|
if (!strcmp (str, res))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue