diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-10-01 17:09:48 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2005-10-01 17:09:48 +0000 |
commit | a843e4281134de1545d538cb8970179b1d6977f6 (patch) | |
tree | 7cd264e1f9746928adc4424e686460066577c0fd /src | |
parent | 98f7d043f894c73fecaf14440c1a24b6c2fc4b06 (diff) |
add missing return value on success in RADEONSetupMemXAA().
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_driver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 5f6dc941..b6add939 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -5406,6 +5406,7 @@ Bool RADEONSetupMemXAA(int scrnIndex, ScreenPtr pScreen) "Largest offscreen area available: %d x %d\n", width, height); } + return TRUE; } } #endif /* USE_XAA */ |