Print out error message if we fail to remove message from queue.

This commit is contained in:
Ulrich Czekalla 2005-03-07 10:58:00 +00:00 committed by Alexandre Julliard
parent 46f96fa1ef
commit 687679cd90
1 changed files with 2 additions and 1 deletions

View File

@ -1520,7 +1520,8 @@ static BOOL process_hardware_message( MSG *msg, ULONG_PTR extra_info, HWND hwnd,
req->type = MSG_HARDWARE; req->type = MSG_HARDWARE;
req->result = 0; req->result = 0;
req->remove = remove || !ret; req->remove = remove || !ret;
wine_server_call( req ); if (wine_server_call( req ))
FIXME("Failed to reply to MSG_HARDWARE message. Message may not be removed from queue.\n");
} }
SERVER_END_REQ; SERVER_END_REQ;
return ret; return ret;