mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
winhlp32: Remove superfluous casts.
This commit is contained in:
parent
f0de1622d0
commit
cd4a7c3146
1 changed files with 2 additions and 2 deletions
|
@ -353,7 +353,7 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam)
|
|||
return 0;
|
||||
}
|
||||
|
||||
wh = (WINHELP*)cds->lpData;
|
||||
wh = cds->lpData;
|
||||
|
||||
if (wh)
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
HWND hListWnd = (HWND)cookie;
|
||||
HWND hListWnd = cookie;
|
||||
int count;
|
||||
|
||||
WINE_TRACE("Adding '%s' to search list\n", (char *)p);
|
||||
|
|
Loading…
Reference in a new issue