From 9997f84eac79f38fd38038ef6d07dd5affdff098 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Mon, 31 Oct 2005 15:43:27 +0000 Subject: [PATCH] Add void to empty declaration list. --- dlls/shell32/tests/shlexec.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c index 44adec8e05..370e123056 100644 --- a/dlls/shell32/tests/shlexec.c +++ b/dlls/shell32/tests/shlexec.c @@ -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* sect, const char* key) 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;