summaryrefslogtreecommitdiff
path: root/test/glx_static.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/glx_static.c')
-rw-r--r--test/glx_static.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/glx_static.c b/test/glx_static.c
index d528a60..1466f55 100644
--- a/test/glx_static.c
+++ b/test/glx_static.c
@@ -50,7 +50,7 @@ main(int argc, char **argv)
#if NEEDS_TO_BE_STATIC
if (dlsym(NULL, "epoxy_glCompileShader")) {
- fprintf(stderr, "glx_static requires epoxy built with --enable-static\n");
+ fputs("glx_static requires epoxy built with --enable-static\n", stderr);
return 77;
}
#endif
@@ -62,7 +62,7 @@ main(int argc, char **argv)
val = 0;
glGetIntegerv(GL_LIGHTING, &val);
if (!val) {
- fprintf(stderr, "Enabling GL_LIGHTING didn't stick.\n");
+ fputs("Enabling GL_LIGHTING didn't stick.\n", stderr);
pass = false;
}