oleaut32: Print 64bit integers with wine_dbgstr_longlong.

This commit is contained in:
Stefan Leichter 2006-08-21 20:48:12 +02:00 committed by Alexandre Julliard
parent 6a37478ab9
commit 220547708a
1 changed files with 1 additions and 1 deletions

View File

@ -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)