summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@neko.keithp.com>2007-04-19 13:01:37 -0700
committerKeith Packard <keithp@neko.keithp.com>2007-04-19 13:01:37 -0700
commit07797fee88d6be0dfb30394a419dd86f8a3c9095 (patch)
tree8b398a11c74a81b559ec187c7628b4681f6d9f6c
parent163c565527e8cda1f5a47c7fd63f04c80feaf3c7 (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.c2
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