summaryrefslogtreecommitdiff
path: root/test/glx_public_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/glx_public_api.c')
-rw-r--r--test/glx_public_api.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/glx_public_api.c b/test/glx_public_api.c
index e38d260..aecdd2a 100644
--- a/test/glx_public_api.c
+++ b/test/glx_public_api.c
@@ -92,15 +92,15 @@ static bool
test_glx_extension_supported(void)
{
if (!epoxy_has_glx_extension(dpy, 0, "GLX_ARB_get_proc_address")) {
- fprintf(stderr,
- "Incorrectly reported no support for GLX_ARB_get_proc_address "
- "(should always be present in Linux ABI)\n");
+ fputs("Incorrectly reported no support for GLX_ARB_get_proc_address "
+ "(should always be present in Linux ABI)\n",
+ stderr);
return false;
}
if (epoxy_has_glx_extension(dpy, 0, "GLX_EXT_ham_sandwich")) {
- fprintf(stderr,
- "Incorrectly reported support for GLX_EXT_ham_sandwich\n");
+ fputs("Incorrectly reported support for GLX_EXT_ham_sandwich\n",
+ stderr);
return false;
}