oleaut32: Remove a superfluous TRUE:FALSE conditional expression.

oldstable
Michael Stefaniuc 2012-11-14 12:35:49 +01:00 committed by Alexandre Julliard
parent 5267f8b7d9
commit 333c71730d
1 changed files with 1 additions and 1 deletions

View File

@ -2252,7 +2252,7 @@ HRESULT WINAPI VarNumFromParseNum(NUMPARSE *pNumprs, BYTE *rgbDig,
}
/* Zero is not a negative number */
bNegative = pNumprs->dwOutFlags & NUMPRS_NEG && ul64 ? TRUE : FALSE;
bNegative = pNumprs->dwOutFlags & NUMPRS_NEG && ul64;
TRACE("Integer value is 0x%s, bNeg %d\n", wine_dbgstr_longlong(ul64), bNegative);