comctl32/tests: Don't cast NULL to an int.

This commit is contained in:
Michael Stefaniuc 2011-07-19 15:25:35 +02:00 committed by Alexandre Julliard
parent 8ec442f510
commit 11e780ea07
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ static LRESULT CALLBACK sheet_callback_messages_proc (HWND hwnd, UINT msg, WPARA
static int CALLBACK sheet_callback_messages(HWND hwnd, UINT msg, LPARAM lParam)
{
save_message(hwnd, msg, (WPARAM)NULL, lParam, RECEIVER_SHEET_CALLBACK);
save_message(hwnd, msg, 0, lParam, RECEIVER_SHEET_CALLBACK);
switch (msg)
{