Commit cd4a7c31 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winhlp32: Remove superfluous casts.

parent f0de1622
...@@ -353,7 +353,7 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam) ...@@ -353,7 +353,7 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam)
return 0; return 0;
} }
wh = (WINHELP*)cds->lpData; wh = cds->lpData;
if (wh) if (wh)
{ {
...@@ -1154,7 +1154,7 @@ static LRESULT CALLBACK WINHELP_ShadowWndProc(HWND hWnd, UINT msg, WPARAM wParam ...@@ -1154,7 +1154,7 @@ static LRESULT CALLBACK WINHELP_ShadowWndProc(HWND hWnd, UINT msg, WPARAM wParam
*/ */
static void cb_KWBTree(void *p, void **next, void *cookie) static void cb_KWBTree(void *p, void **next, void *cookie)
{ {
HWND hListWnd = (HWND)cookie; HWND hListWnd = cookie;
int count; int count;
WINE_TRACE("Adding '%s' to search list\n", (char *)p); WINE_TRACE("Adding '%s' to search list\n", (char *)p);
......
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