mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
fixed difference in signedness warning in MulDiv()
svn path=/trunk/; revision=18388
This commit is contained in:
@@ -39,7 +39,7 @@ MulDiv(INT nNumber,
|
||||
/* Divide the product to get the quotient and remainder */
|
||||
Result.LowPart = RtlEnlargedUnsignedDivide(*(PULARGE_INTEGER)&Result,
|
||||
(ULONG)nDenominator,
|
||||
&Result.HighPart);
|
||||
(PULONG)&Result.HighPart);
|
||||
|
||||
/* Do the sign changes */
|
||||
if ((LONG)Result.LowPart >= 0)
|
||||
|
||||
Reference in New Issue
Block a user