Module: wine Branch: master Commit: eff5b130436bace975dbe7c5b70664a1bf7f93e5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eff5b130436bace975dbe7c5b7...
Author: Michael Stefaniuc mstefani@redhat.de Date: Mon Mar 5 13:48:23 2007 +0100
hhctrl.ocx: Fix a format warning.
---
dlls/hhctrl.ocx/help.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index f43cc0b..3bc9e8e 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c @@ -77,7 +77,7 @@ static HRESULT navigate_url(HHInfo *info, LPCWSTR surl) VariantClear(&url);
if(FAILED(hres)) - TRACE("Navigation failed: %08lx\n", hres); + TRACE("Navigation failed: %08x\n", hres);
return hres; }