From 57955451f80c64f70e369508705ae95a515d18d8 Mon Sep 17 00:00:00 2001 From: Jon TURNEY Date: Sun, 21 Jun 2009 11:58:25 +0100 Subject: xdemos: Fix xdemos which default to using display :0.0 to default to $DISPLAY Fix xdemos which default to using display :0.0 to default to $DISPLAY, this is kind of irritating when testing on a display other than :0.0 Signed-off-by: Jon TURNEY --- progs/xdemos/glthreads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'progs/xdemos/glthreads.c') diff --git a/progs/xdemos/glthreads.c b/progs/xdemos/glthreads.c index b90e6b4f31..ea5474870b 100644 --- a/progs/xdemos/glthreads.c +++ b/progs/xdemos/glthreads.c @@ -26,7 +26,7 @@ * -p Open a display connection for each thread * -l Enable application-side locking * -n Number of threads to create (default is 2) - * -display Specify X display (default is :0.0) + * -display Specify X display (default is $DISPLAY) * -t Use texture mapping * * Brian Paul 20 July 2000 @@ -573,7 +573,7 @@ usage(void) int main(int argc, char *argv[]) { - char *displayName = ":0.0"; + char *displayName = NULL; int numThreads = 2; Display *dpy = NULL; int i; -- cgit v1.2.3