summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2012-12-17 12:34:05 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2012-12-17 12:34:05 +0000
commit4d7e3a9123cf41d2dd97c0a8a0d461c189064822 (patch)
treec63670b3cff9f5bd3bc98347387fb29c6e3df5c6
parent7a4d1136bd09bfd4d2657c0b1b64d553eeb6ed4f (diff)
uxa: Fix copy'n'paste of false not FALSE
Bugzilla; https://bugs.freedesktop.org/show_bug.cgi?id=58406 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/intel_uxa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_uxa.c b/src/intel_uxa.c
index 60ab3a64..f5ac0a6c 100644
--- a/src/intel_uxa.c
+++ b/src/intel_uxa.c
@@ -1298,7 +1298,7 @@ static Bool intel_option_accel_blt(intel_screen_private *intel)
s = xf86GetOptValString(intel->Options, OPTION_ACCEL_METHOD);
if (s == NULL)
- return false;
+ return FALSE;
return strcasecmp(s, "blt") == 0;
}