Alasdair Sinclair : user32/tests: Fix missing void in empty parameter list.
Module: wine Branch: master Commit: c2c564db9daa72a90761ac8ee07e9aeb2ed4ba29 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c2c564db9daa72a90761ac8ee0... Author: Alasdair Sinclair <alasdairs(a)dsl.pipex.com> Date: Wed Jan 28 21:34:52 2009 +0000 user32/tests: Fix missing void in empty parameter list. --- dlls/user32/tests/dde.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user32/tests/dde.c b/dlls/user32/tests/dde.c index a60e562..3598342 100644 --- a/dlls/user32/tests/dde.c +++ b/dlls/user32/tests/dde.c @@ -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;
participants (1)
-
Alexandre Julliard