Commit c2c564db authored by Alasdair Sinclair's avatar Alasdair Sinclair Committed by Alexandre Julliard

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

parent 986b957e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment