From 6935778ded0edf150cf31c545e69499e775f75c0 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 21 Sep 2013 09:05:23 -0700 Subject: [PATCH] Fix misleasing error message for unset GLAZE_WRAPPER variable. The previous error message was apparently copy-pasted from the GLAZE_LIBGL error message. Fix it to indicate that GLAZE_WRAPPER should point to the user's wrapper library, not the underlying libGL.so. --- glaze-gl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glaze-gl.c b/glaze-gl.c index 7248876..14d24d7 100644 --- a/glaze-gl.c +++ b/glaze-gl.c @@ -80,7 +80,7 @@ open_wrapper_handle (void) path = getenv ("GLAZE_WRAPPER"); if (path == NULL) { - fprintf (stderr, "GLAZE_WRAPPER unset. Please set to path of real libGL.so under glaze.\n"); + fprintf (stderr, "GLAZE_WRAPPER unset. Please set to path of Glaze-using wrapper library.\n"); exit (1); } -- 2.43.0