mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
[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:
parent
826e650c27
commit
12ec6c5c29
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue