Commit 22054770 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

oleaut32: Print 64bit integers with wine_dbgstr_longlong.

parent 6a37478a
......@@ -2172,7 +2172,7 @@ HRESULT WINAPI VarNumFromParseNum(NUMPARSE *pNumprs, BYTE *rgbDig,
/* 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)
......
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