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

This commit is contained in:
Alasdair Sinclair 2009-01-28 21:34:52 +00:00 committed by Alexandre Julliard
parent 986b957e4a
commit c2c564db9d
1 changed files with 2 additions and 2 deletions

View File

@ -986,7 +986,7 @@ static LRESULT WINAPI dde_msg_client_wndproc(HWND hwnd, UINT msg, WPARAM wparam,
return DefWindowProcA(hwnd, msg, wparam, lparam);
}
static HGLOBAL create_poke()
static HGLOBAL create_poke(void)
{
HGLOBAL hglobal;
DDEPOKE *poke;
@ -1022,7 +1022,7 @@ static HGLOBAL create_execute(LPCSTR command)
return hglobal;
}
static void test_msg_client()
static void test_msg_client(void)
{
HGLOBAL hglobal;
LPARAM lparam;