Skip to content
Snippets Groups Projects
Commit 8be3bf1c authored by Huw D. M. Davies's avatar Huw D. M. Davies Committed by Alexandre Julliard
Browse files

Actually print return value of message.

parent 718b0e40
Branches
Tags
No related merge requests found
......@@ -1771,9 +1771,9 @@ static LRESULT MSG_SendMessage( HWND hwnd, UINT msg, WPARAM wParam,
}
if (flags & SMSG_WIN32)
SPY_ExitMessage( SPY_RESULT_OK, hwnd, msg, ret );
SPY_ExitMessage( SPY_RESULT_OK, hwnd, msg, *pRes );
else
SPY_ExitMessage( SPY_RESULT_OK16, hwnd, msg, ret );
SPY_ExitMessage( SPY_RESULT_OK16, hwnd, msg, *pRes );
END:
WIN_ReleaseWndPtr(wndPtr);
return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment