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

oldstable
Alasdair Sinclair 2009-01-25 22:27:18 +00:00 committed by Alexandre Julliard
parent d2915c0f99
commit 4f0e6885d0
1 changed files with 2 additions and 2 deletions

View File

@ -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;