diff options
author | Matthias Hopf <mhopf@suse.de> | 2008-01-09 14:40:49 +0100 |
---|---|---|
committer | Matthias Hopf <mhopf@suse.de> | 2008-03-28 14:18:26 +0100 |
commit | c40f195f2dc3467259b4588e087aac9741003ebf (patch) | |
tree | 485053aa0967931cf9c596d99b28b4c6803d4a4b /src | |
parent | 7bba2c13310ed5ac22a355a3cc0ec8b7afaa79cf (diff) |
Fix obviously stray '(' in non-I830_USE_EXA case.
Diffstat (limited to 'src')
-rw-r--r-- | src/i830_xaa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_xaa.c b/src/i830_xaa.c index 0df7f98e..c9c26b07 100644 --- a/src/i830_xaa.c +++ b/src/i830_xaa.c @@ -326,7 +326,7 @@ I830SetupForSolidFill(ScrnInfoPtr pScrn, int color, int rop, */ pI830->BR[13] |= (I830PatternROP[rop] << 16); #else - pI830->BR[13] |= ((XAAGetPatternROP(rop) << 16); + pI830->BR[13] |= (XAAGetPatternROP(rop) << 16); #endif pI830->BR[16] = color; |