Nikolay Sivov : ole32: Fix a typo in argument name.
Module: wine Branch: master Commit: 4cef7ad841fe17b8a9fa879a99a802eacb7dae89 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4cef7ad841fe17b8a9fa879a99... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Tue Jun 16 22:43:23 2015 +0300 ole32: Fix a typo in argument name. --- dlls/ole32/usrmarshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/usrmarshal.c b/dlls/ole32/usrmarshal.c index 957338a..fe8ff4f 100644 --- a/dlls/ole32/usrmarshal.c +++ b/dlls/ole32/usrmarshal.c @@ -308,7 +308,7 @@ static unsigned char * handle_UserUnmarshal(ULONG *pFlags, unsigned char *pBuffe return pBuffer + sizeof(RemotableHandle); } -static void handle_UserFree(ULONG *pFlags, HANDLE *phMenu) +static void handle_UserFree(ULONG *pFlags, HANDLE *handle) { /* nothing to do */ }
participants (1)
-
Alexandre Julliard