fixed difference in signedness warning in MulDiv()
Modified: trunk/reactos/lib/kernel32/misc/muldiv.c
_____
Modified: trunk/reactos/lib/kernel32/misc/muldiv.c
--- trunk/reactos/lib/kernel32/misc/muldiv.c 2005-10-09 22:15:06 UTC
(rev 18387)
+++ trunk/reactos/lib/kernel32/misc/muldiv.c 2005-10-09 22:30:27 UTC
(rev 18388)
@@ -39,7 +39,7 @@
/* 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)