diff options
author | Matthias Hopf <mhopf@suse.de> | 2008-01-09 14:40:49 +0100 |
---|---|---|
committer | root <root@debian-hp.(none)> | 2008-03-30 21:42:48 +0800 |
commit | 6e8c89452ff9a9fe9a99734706e68b89ad8768fe (patch) | |
tree | 2db4f1c62a4fdea09a123dfe3d330211f1fd195c | |
parent | 5ddebfd1e603ca515b0e74fd78f3c8b1f395bafe (diff) |
Fix obviously stray '(' in non-I830_USE_EXA case.
(cherry picked from commit c40f195f2dc3467259b4588e087aac9741003ebf)
-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; |