From 888d157bdaf0e3c45c550db4e77338acd2c9ba7b Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 9 Apr 2008 21:23:29 +0900 Subject: [PATCH] wineconsole: Fix Win64 warning. --- programs/wineconsole/wineconsole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wineconsole/wineconsole.c b/programs/wineconsole/wineconsole.c index a78e07630ea..bdb695de6f7 100644 --- a/programs/wineconsole/wineconsole.c +++ b/programs/wineconsole/wineconsole.c @@ -304,7 +304,7 @@ int WINECON_GrabChanges(struct inner_data* data) h = wine_server_call_err( req ) ? 0 : (HANDLE)reply->handle; } SERVER_END_REQ; - WINE_TRACE(" active(%d)", (int)h); + WINE_TRACE(" active(%p)", h); if (h) { CloseHandle(data->hConOut); -- 2.11.4.GIT