diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2006-10-25 11:39:27 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-10-25 11:41:20 +0200 |
commit | d12d0839fdede9ddad219815ced89664a2c44458 (patch) | |
tree | 2910ac10e0c65f175e0399f41101f40103ca12dc | |
parent | 6e73c87c53f39a2386dc4c1ac4fc354d961e0c45 (diff) |
Fix test for Option "IgnoreABI".
This option has plenty of potential for wasting the time of bug triagers
without pretending it's always on.
(cherry picked from becbda6d519a11c2c211afb8d46f9ea1a2676bc3 commit)
-rw-r--r-- | hw/xfree86/common/xf86Config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c index dbe158efc..f1055928e 100644 --- a/hw/xfree86/common/xf86Config.c +++ b/hw/xfree86/common/xf86Config.c @@ -907,7 +907,7 @@ configServerFlags(XF86ConfFlagsPtr flagsconf, XF86OptionPtr layoutopts) xf86GetOptValBool(FlagOptions, FLAG_ALLOW_CLOSEDOWN_GRABS, &(xf86Info.grabInfo.allowClosedown)); xf86GetOptValBool(FlagOptions, FLAG_IGNORE_ABI, &xf86Info.ignoreABI); - if (&xf86Info.ignoreABI) { + if (xf86Info.ignoreABI) { xf86Msg(X_CONFIG, "Ignoring ABI Version\n"); } |