diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-12-17 12:34:05 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-12-17 12:34:05 +0000 |
commit | 4d7e3a9123cf41d2dd97c0a8a0d461c189064822 (patch) | |
tree | c63670b3cff9f5bd3bc98347387fb29c6e3df5c6 | |
parent | 7a4d1136bd09bfd4d2657c0b1b64d553eeb6ed4f (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.c | 2 |
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; } |