mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 09:58:05 +02:00
remove \n from warning message string
This commit is contained in:
parent
aa70253cbb
commit
1ac8ae446a
1 changed files with 2 additions and 2 deletions
|
|
@ -881,9 +881,9 @@ _mesa_warning( GLcontext *ctx, const char *fmtString, ... )
|
|||
#endif
|
||||
if (debug) {
|
||||
#if defined(XFree86LOADER) && defined(IN_MODULE)
|
||||
xf86fprintf(stderr, "Mesa warning: %s\n", str);
|
||||
xf86fprintf(stderr, "Mesa warning: %s", str);
|
||||
#else
|
||||
fprintf(stderr, "Mesa warning: %s\n", str);
|
||||
fprintf(stderr, "Mesa warning: %s", str);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue