msi: Make some data const and static.
diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index c61a70b..9303bcb 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -240,7 +240,7 @@
STANDARDACTIONHANDLER handler;
};
-static struct _actions StandardActions[];
+static const struct _actions StandardActions[];
/********************************************************
@@ -4316,7 +4316,7 @@
return msi_unimplemented_action_stub( package, "UnregisterComPlus", table );
}
-static struct _actions StandardActions[] = {
+static const struct _actions StandardActions[] = {
{ szAllocateRegistrySpace, ACTION_AllocateRegistrySpace },
{ szAppSearch, ACTION_AppSearch },
{ szBindImage, ACTION_BindImage },