From b57c6ef53daeae0f2bad3c500b104afd1d7e18fc Mon Sep 17 00:00:00 2001 From: Daniel Price Date: Mon, 2 Dec 2024 15:49:10 +1100 Subject: [PATCH] (xw) further tweaks to error message when cannot launch X-window --- src/giza-driver-xw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/giza-driver-xw.c b/src/giza-driver-xw.c index 12171bc..1b28b76 100644 --- a/src/giza-driver-xw.c +++ b/src/giza-driver-xw.c @@ -117,7 +117,7 @@ _giza_open_device_xw (double width, double height, int units) XW[id].display = XOpenDisplay (NULL); if (!XW[id].display) { - _giza_error ("_giza_open_device_xw", "Cannot launch X window (use ssh -Y not ssh / install XQuartz if on Mac)"); + _giza_error ("_giza_open_device_xw", "Cannot launch X window (use ssh -Y if remote; install XQuartz if on Mac)"); return 1; }