mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +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;
|
file = e->file;
|
||||||
line = e->line;
|
line = e->line;
|
||||||
}
|
}
|
||||||
fprintf (stderr, "%s:%d: ", G_GETSTR (file), line);
|
fprintf (stderr, "%s:%d: error: ", G_GETSTR (file), line);
|
||||||
vfprintf (stderr, fmt, args);
|
vfprintf (stderr, fmt, args);
|
||||||
fputs ("\n", stderr);
|
fputs ("\n", stderr);
|
||||||
va_end (args);
|
va_end (args);
|
||||||
|
|
Loading…
Reference in a new issue