mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
print line and char number for the error
This commit is contained in:
parent
fd0c5aab36
commit
4c23641759
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ PL_GetPropertyList (const char *string)
|
|||
return newpl;
|
||||
} else {
|
||||
if (pl && pl->error && pl->error[0])
|
||||
Sys_Error ("%s\n", pl->error);
|
||||
Sys_Error ("%d,%d: %s\n", pl->line, pl->pos, pl->error);
|
||||
free (pl);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue