projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa70253
)
remove \n from warning message string
author
Brian Paul
<brian.paul@tungstengraphics.com>
Thu, 30 Jun 2005 14:24:44 +0000
(14:24 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Thu, 30 Jun 2005 14:24:44 +0000
(14:24 +0000)
src/mesa/main/imports.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/imports.c
b/src/mesa/main/imports.c
index 95116ca91e16a052632fe3aaa2906d3ab074e7d3..fec0d3384489caf99a615d33543ec49ecc91559d 100644
(file)
--- a/
src/mesa/main/imports.c
+++ b/
src/mesa/main/imports.c
@@
-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
}
}