From 7cf80b9714864c3c4eb9898ff1b7d657ecd16df7 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Wed, 1 Jun 2016 14:27:23 -0400 Subject: [PATCH] =?UTF-8?q?xfree86:=20Don't=20swallow=20=C2=B1iglx=20comma?= =?UTF-8?q?nd=20line=20flag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We want to notice that it's set, but still pass it through to dix. Return 0 to indicate this. Signed-off-by: Adam Jackson Reviewed-by: Peter Hutterer --- hw/xfree86/common/xf86Init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 93c0d74be..998100aa9 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -1378,7 +1378,7 @@ ddxProcessArgument(int argc, char **argv, int i) } if (!strcmp(argv[i], "-iglx") || !strcmp(argv[i], "+iglx")) { xf86Info.iglxFrom = X_CMDLINE; - return 1; + return 0; } /* OS-specific processing */