From 95a5b92e37f73f497d547fd91c543c16d2cc73de Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 2 Oct 2014 10:26:53 -0700 Subject: [PATCH] xfree86: Remove remaining return FALSE from configServerFlags Remove the error return path from the FLAG_PIXMAP path and leave the default value in place. There's no point skipping the rest of this function. Signed-off-by: Keith Packard --- hw/xfree86/common/xf86Config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c index bca5b45e9..5b254bafa 100644 --- a/hw/xfree86/common/xf86Config.c +++ b/hw/xfree86/common/xf86Config.c @@ -1011,7 +1011,7 @@ configServerFlags(XF86ConfFlagsPtr flagsconf, XF86OptionPtr layoutopts) break; default: ErrorF("Pixmap option's value (%d) must be 24 or 32\n", i); - return FALSE; + break; } if (xf86Pix24 != Pix24DontCare) { xf86Info.pixmap24 = xf86Pix24;