]> git.cworth.org Git - glaze/commitdiff
Fix misleasing error message for unset GLAZE_WRAPPER variable.
authorCarl Worth <cworth@cworth.org>
Sat, 21 Sep 2013 16:05:23 +0000 (09:05 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 21 Sep 2013 22:00:56 +0000 (15:00 -0700)
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

index 7248876b75da4940ee83e71430b9647f41ef801d..14d24d76c1bb875e4bd19a84fa39d675cf3460e1 100644 (file)
@@ -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);
        }