mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
explicity state errors are errors rather than leaving it implicit (tracking
gcc's messages again;)
This commit is contained in:
parent
6705140f76
commit
728dde167d
1 changed files with 1 additions and 1 deletions
|
@ -2850,7 +2850,7 @@ error (expr_t *e, const char *fmt, ...)
|
|||
file = e->file;
|
||||
line = e->line;
|
||||
}
|
||||
fprintf (stderr, "%s:%d: ", G_GETSTR (file), line);
|
||||
fprintf (stderr, "%s:%d: error: ", G_GETSTR (file), line);
|
||||
vfprintf (stderr, fmt, args);
|
||||
fputs ("\n", stderr);
|
||||
va_end (args);
|
||||
|
|
Loading…
Reference in a new issue