diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2004-08-03 09:38:03 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2004-08-03 09:38:03 +0000 |
commit | fd440a1e2110e05d116207800c123c281fbf5e19 (patch) | |
tree | 0c1fa2d92f48b58e4406401be79758233011db6b /src/radeon_driver.c | |
parent | dd0f86c4cb046c79a65144f767e97fd99e7f61c9 (diff) |
programs/Xserver/hw/xfree86/drivers/ati/r128_driver.c
programs/Xserver/hw/xfree86/drivers/ati/r128_probe.h
programs/Xserver/hw/xfree86/drivers/ati/radeon_driver.c
programs/Xserver/hw/xfree86/drivers/ati/radeon_probe.h Fix Constification
problems.
Diffstat (limited to 'src/radeon_driver.c')
-rw-r--r-- | src/radeon_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index b2cd9866..f4fdae10 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -210,7 +210,7 @@ static const OptionInfoRec RADEONOptions[] = { { -1, NULL, OPTV_NONE, {0}, FALSE } }; -OptionInfoRec *RADEONOptionsWeak(void) { return RADEONOptions; } +const OptionInfoRec *RADEONOptionsWeak(void) { return RADEONOptions; } static const char *vgahwSymbols[] = { "vgaHWFreeHWRec", |