Module: wine Branch: master Commit: d76d32411abf29d74fc935f3b7880f08ee24c933 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d76d32411abf29d74fc935f3b7...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Apr 9 16:14:28 2010 +0200
hhctrl.ocx: Add casts to pointer differences in traces.
---
dlls/hhctrl.ocx/hhctrl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 99f7130..9ab66de 100644 --- a/dlls/hhctrl.ocx/hhctrl.c +++ b/dlls/hhctrl.ocx/hhctrl.c @@ -302,7 +302,7 @@ int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine) } else { - FIXME("Unhandled HTML Help command line parameter! (%.*s)\n", space-szCmdLine, szCmdLine); + FIXME("Unhandled HTML Help command line parameter! (%.*s)\n", (int)(space-szCmdLine), szCmdLine); return 0; } }