Commit d1d1d020 authored by Alexandre Julliard's avatar Alexandre Julliard

msi/tests: Make some variables static.

parent 7064e883
......@@ -8230,7 +8230,7 @@ static void test_select_with_tablenames(void)
DeleteFileA(msifile);
}
UINT ordervals[6][3] =
static const UINT ordervals[6][3] =
{
{ MSI_NULL_INTEGER, 12, 13 },
{ 1, 2, 3 },
......
......@@ -7661,7 +7661,7 @@ error:
RemoveDirectory("msitest");
}
struct sourcepathmap
static const struct sourcepathmap
{
BOOL sost; /* shortone\shorttwo */
BOOL solt; /* shortone\longtwo */
......
......@@ -31,7 +31,7 @@
#include "wine/test.h"
static const char msifile[] = "winetest-package.msi";
char CURR_DIR[MAX_PATH];
static char CURR_DIR[MAX_PATH];
static UINT (WINAPI *pMsiApplyMultiplePatchesA)(LPCSTR, LPCSTR, LPCSTR);
......
......@@ -63,7 +63,7 @@
#define PID_MSISOURCE PID_WORDCOUNT
#define PID_MSIRESTRICT PID_CHARCOUNT
const char *msifile = "winetest-suminfo.msi";
static const char *msifile = "winetest-suminfo.msi";
static const WCHAR msifileW[] = {
'w','i','n','e','t','e','s','t','-','s','u','m','i','n','f','o','.','m','s','i',0 };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment