summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-10-02 10:26:53 -0700
committerKeith Packard <keithp@keithp.com>2014-10-02 10:26:53 -0700
commit95a5b92e37f73f497d547fd91c543c16d2cc73de (patch)
tree7ea83b3ace754f9a21fe1f16130a154d491d7ba9
parente9651e3dbc32650fcaf90888b4cbef81da77cfcd (diff)
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 <keithp@keithp.com>
-rw-r--r--hw/xfree86/common/xf86Config.c2
1 files changed, 1 insertions, 1 deletions
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;