mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 21:40:20 +01:00
print newline in _mesa_warning()
This commit is contained in:
parent
2e01918b55
commit
8ee311d36d
1 changed files with 2 additions and 2 deletions
|
|
@ -1001,9 +1001,9 @@ _mesa_warning( GLcontext *ctx, const char *fmtString, ... )
|
|||
#endif
|
||||
if (debug) {
|
||||
#if defined(XFree86LOADER) && defined(IN_MODULE)
|
||||
xf86fprintf(stderr, "Mesa warning: %s", str);
|
||||
xf86fprintf(stderr, "Mesa warning: %s\n", str);
|
||||
#else
|
||||
fprintf(stderr, "Mesa warning: %s", str);
|
||||
fprintf(stderr, "Mesa warning: %s\n", str);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue