diff options
author | Keith Packard <keithp@neko.keithp.com> | 2007-04-19 13:01:37 -0700 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2007-04-19 13:01:37 -0700 |
commit | 07797fee88d6be0dfb30394a419dd86f8a3c9095 (patch) | |
tree | 8b398a11c74a81b559ec187c7628b4681f6d9f6c | |
parent | 163c565527e8cda1f5a47c7fd63f04c80feaf3c7 (diff) |
Fix mismatching braces when XF86DRI_MM is not defined.
A closing brace was left inside #ifdef XF86DRI_MM while the matching
open brace was outside.
-rw-r--r-- | src/i830_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index c8574989..e3bf330a 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -1294,8 +1294,8 @@ I830PreInit(ScrnInfoPtr pScrn, int flags) "Will try to reserve %d kiB of AGP aperture space\n" "\tfor the DRM memory manager.\n", pI830->mmSize); - } #endif + } } #endif |