Marcus Meissner : msi: Marked two variables static.
Module: wine Branch: master Commit: 9684c9fee64111b7ba99db9885188b8bbe6d196c URL: http://source.winehq.org/git/wine.git/?a=commit;h=9684c9fee64111b7ba99db9885... Author: Marcus Meissner <marcus(a)jet.franken.de> Date: Tue Oct 16 21:26:13 2007 +0200 msi: Marked two variables static. --- dlls/msi/tests/install.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index f3de7e7..0c50156 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -40,8 +40,8 @@ static UINT (WINAPI *pMsiSourceListGetInfoA) static const char *msifile = "msitest.msi"; static const char *msifile2 = "winetest2.msi"; static const char *mstfile = "winetest.mst"; -CHAR CURR_DIR[MAX_PATH]; -CHAR PROG_FILES_DIR[MAX_PATH]; +static CHAR CURR_DIR[MAX_PATH]; +static CHAR PROG_FILES_DIR[MAX_PATH]; /* msi database data */
participants (1)
-
Alexandre Julliard