comctl32/tests: Fix missing void in empty parameter list.
This commit is contained in:
parent
d2915c0f99
commit
4f0e6885d0
|
@ -78,7 +78,7 @@ static LRESULT WINAPI create_test_wndproc(HWND hwnd, UINT msg, WPARAM wParam, LP
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void register_subclass()
|
static void register_subclass(void)
|
||||||
{
|
{
|
||||||
WNDCLASSEX cls;
|
WNDCLASSEX cls;
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ static void register_subclass()
|
||||||
ok(RegisterClassEx(&cls), "RegisterClassEx failed\n");
|
ok(RegisterClassEx(&cls), "RegisterClassEx failed\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void test_create()
|
static void test_create(void)
|
||||||
{
|
{
|
||||||
RECT rc;
|
RECT rc;
|
||||||
HWND hwnd;
|
HWND hwnd;
|
||||||
|
|
Loading…
Reference in New Issue