Commit 888d157b authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

wineconsole: Fix Win64 warning.

parent b9f78daf
...@@ -304,7 +304,7 @@ int WINECON_GrabChanges(struct inner_data* data) ...@@ -304,7 +304,7 @@ int WINECON_GrabChanges(struct inner_data* data)
h = wine_server_call_err( req ) ? 0 : (HANDLE)reply->handle; h = wine_server_call_err( req ) ? 0 : (HANDLE)reply->handle;
} }
SERVER_END_REQ; SERVER_END_REQ;
WINE_TRACE(" active(%d)", (int)h); WINE_TRACE(" active(%p)", h);
if (h) if (h)
{ {
CloseHandle(data->hConOut); CloseHandle(data->hConOut);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment