msi: Declare some functions static.
diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index a90a81a..83ba416 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -1931,7 +1931,7 @@
return ERROR_SUCCESS;
}
-LPWSTR msi_get_disk_file_version( LPCWSTR filename )
+static LPWSTR msi_get_disk_file_version( LPCWSTR filename )
{
static const WCHAR name_fmt[] =
{'%','u','.','%','u','.','%','u','.','%','u',0};
@@ -3869,7 +3869,7 @@
return ERROR_INSTALL_SUSPEND;
}
-UINT msi_set_sourcedir_props(MSIPACKAGE *package)
+static UINT msi_set_sourcedir_props(MSIPACKAGE *package)
{
LPWSTR p, source;
DWORD len;