diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-11-19 15:29:34 +1100 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2012-11-21 11:13:55 +1100 |
commit | 3556d43010f0a37bf30aa2e0ceee9a8bbcad311d (patch) | |
tree | f5e9df564bdbb366c69f0981352f5899936f8bb6 /hw/xfree86/common/xf86Extensions.c | |
parent | db83830eef38a86a471378121213162da180537d (diff) |
Constify extensions in LoadExtension users
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'hw/xfree86/common/xf86Extensions.c')
-rw-r--r-- | hw/xfree86/common/xf86Extensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86Extensions.c b/hw/xfree86/common/xf86Extensions.c index d5309d558..f9e791607 100644 --- a/hw/xfree86/common/xf86Extensions.c +++ b/hw/xfree86/common/xf86Extensions.c @@ -53,7 +53,7 @@ /* * DDX-specific extensions. */ -static ExtensionModule extensionModules[] = { +static const ExtensionModule extensionModules[] = { #ifdef XF86VIDMODE { XFree86VidModeExtensionInit, |