Alasdair Sinclair : comctl32/tests: Fix missing void in empty parameter list.

Alexandre Julliard julliard at winehq.org
Mon Jan 26 10:14:06 CST 2009


Module: wine
Branch: master
Commit: 4f0e6885d08fc7342e9521d15828361c3fcd67e8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4f0e6885d08fc7342e9521d15828361c3fcd67e8

Author: Alasdair Sinclair <alasdairs at dsl.pipex.com>
Date:   Sun Jan 25 22:27:18 2009 +0000

comctl32/tests: Fix missing void in empty parameter list.

---

 dlls/comctl32/tests/status.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/tests/status.c b/dlls/comctl32/tests/status.c
index e5b9155..8b8facf 100644
--- a/dlls/comctl32/tests/status.c
+++ b/dlls/comctl32/tests/status.c
@@ -78,7 +78,7 @@ static LRESULT WINAPI create_test_wndproc(HWND hwnd, UINT msg, WPARAM wParam, LP
     return ret;
 }
 
-static void register_subclass()
+static void register_subclass(void)
 {
     WNDCLASSEX cls;
 
@@ -91,7 +91,7 @@ static void register_subclass()
     ok(RegisterClassEx(&cls), "RegisterClassEx failed\n");
 }
 
-static void test_create()
+static void test_create(void)
 {
     RECT rc;
     HWND hwnd;




More information about the wine-cvs mailing list