Stefan Leichter : oleaut32: Print 64bit integers with wine_dbgstr_longlong.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Aug 22 05:55:29 CDT 2006


Module: wine
Branch: master
Commit: 220547708a3dc214d0779c463a4d03da03536cb4
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=220547708a3dc214d0779c463a4d03da03536cb4

Author: Stefan Leichter <Stefan.Leichter at camline.com>
Date:   Mon Aug 21 20:48:12 2006 +0200

oleaut32: Print 64bit integers with wine_dbgstr_longlong.

---

 dlls/oleaut32/variant.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/oleaut32/variant.c b/dlls/oleaut32/variant.c
index 46d31e9..05fb764 100644
--- a/dlls/oleaut32/variant.c
+++ b/dlls/oleaut32/variant.c
@@ -2172,7 +2172,7 @@ HRESULT WINAPI VarNumFromParseNum(NUMPAR
     /* Zero is not a negative number */
     bNegative = pNumprs->dwOutFlags & NUMPRS_NEG && ul64 ? TRUE : FALSE;
 
-    TRACE("Integer value is %lld, bNeg %d\n", ul64, bNegative);
+    TRACE("Integer value is 0x%s, bNeg %d\n", wine_dbgstr_longlong(ul64), bNegative);
 
     /* For negative integers, try the signed types in size order */
     if (!bOverflow && bNegative)




More information about the wine-cvs mailing list