Actually print return value of message.

This commit is contained in:
Huw D M Davies 2000-01-23 02:19:20 +00:00 committed by Alexandre Julliard
parent 718b0e4059
commit 8be3bf1c0d

View file

@ -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;