oleaut32: Remove a superfluous TRUE:FALSE conditional expression.
This commit is contained in:
parent
5267f8b7d9
commit
333c71730d
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue