[util] Add eol to plist parse errors

I suspect it got lost when I made the error message a string item.
This commit is contained in:
Bill Currie 2021-01-26 20:45:07 +09:00
parent 826e650c27
commit 12ec6c5c29

View file

@ -899,7 +899,7 @@ PL_GetPropertyList (const char *string)
if (pl && pl->error) {
const char *error = PL_String (pl->error);
if (error[0]) {
Sys_Printf ("plist: %d,%d: %s", pl->line, pl->pos, error);
Sys_Printf ("plist: %d,%d: %s\n", pl->line, pl->pos, error);
}
PL_Free (pl->error);
}