Browse Source

remove \n from warning message string

tags/mesa_20050715
Brian Paul 20 years ago
parent
commit
1ac8ae446a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/mesa/main/imports.c

+ 2
- 2
src/mesa/main/imports.c View File

@@ -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…
Cancel
Save