From: Carl Worth Date: Sat, 21 Sep 2013 16:05:23 +0000 (-0700) Subject: Fix misleasing error message for unset GLAZE_WRAPPER variable. X-Git-Url: https://git.cworth.org/git?p=glaze;a=commitdiff_plain;h=6935778ded0edf150cf31c545e69499e775f75c0 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. --- 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); }