wine/dlls/shell32/tests shlexec.c

Alexandre Julliard julliard at wine.codeweavers.com
Mon Oct 31 09:43:28 CST 2005


ChangeSet ID:	20995
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/10/31 09:43:28

Modified files:
	dlls/shell32/tests: shlexec.c 

Log message:
	Mike McCormack <mike at codeweavers.com>
	Add void to empty declaration list.

Patch: http://cvs.winehq.org/patch.py?id=20995

Old revision  New revision  Changes     Path
 1.6           1.7           +7 -7       wine/dlls/shell32/tests/shlexec.c

Index: wine/dlls/shell32/tests/shlexec.c
diff -u -p wine/dlls/shell32/tests/shlexec.c:1.6 wine/dlls/shell32/tests/shlexec.c:1.7
--- wine/dlls/shell32/tests/shlexec.c	31 Oct 2005 15:43:28 -0000
+++ /dev/null	31 Oct 2005 15:43:28 -0000
@@ -58,7 +58,7 @@ static DLLVERSIONINFO dllver;
  * ShellExecute wrappers
  *
  ***/
-static void dump_child();
+static void dump_child(void);
 
 static HANDLE hEvent;
 static void init_event(const char* child_file)
@@ -369,7 +369,7 @@ static char* getChildString(const char* 
     return ret;
 }
 
-static void dump_child()
+static void dump_child(void)
 {
     if (winetest_debug > 1)
     {
@@ -520,7 +520,7 @@ static filename_tests_t noquotes_tests[]
     {NULL, NULL, 0, 0}
 };
 
-static void test_filename()
+static void test_filename(void)
 {
     char filename[MAX_PATH];
     const filename_tests_t* test;
@@ -690,7 +690,7 @@ static filename_tests_t lnk_tests[]=
     {NULL, NULL, 0, 0}
 };
 
-static void test_lnks()
+static void test_lnks(void)
 {
     char filename[MAX_PATH];
     char params[MAX_PATH];
@@ -788,7 +788,7 @@ static void test_lnks()
 }
 
 
-static void test_exes()
+static void test_exes(void)
 {
     char filename[MAX_PATH];
     char params[1024];
@@ -814,7 +814,7 @@ static void test_exes()
 }
 
 
-static void init_test()
+static void init_test(void)
 {
     HMODULE hdll;
     HRESULT (WINAPI *pDllGetVersion)(DLLVERSIONINFO*);
@@ -916,7 +916,7 @@ static void init_test()
     create_test_verb(".shlexec", "QuotedUpperL", "QuotedUpperL \"%L\"");
 }
 
-static void cleanup_test()
+static void cleanup_test(void)
 {
     char filename[MAX_PATH];
     const char* const * testfile;



More information about the wine-cvs mailing list