shell32: Fix cast in RecycleBinMenu_InvokeCommand

Alexandre Julliard julliard at winehq.org
Thu Jul 14 08:50:38 CDT 2011


Jay Yang <jkelleyy at gmail.com> writes:

> @@ -240,7 +240,7 @@ static HRESULT WINAPI RecycleBinMenu_InvokeCommand(IContextMenu2 *iface,
>      LPCSTR verb = pici->lpVerb;
>      if(!HIWORD(verb))
>      {
> -        switch((UINT)verb)
> +        switch((UINT_PTR)verb)

Actually the HIWORD() is more problematic.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list