diff options
Diffstat (limited to 'kernel/lib/div64.c')
-rw-r--r-- | kernel/lib/div64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/lib/div64.c b/kernel/lib/div64.c index 19ea7ed4b..62a698a43 100644 --- a/kernel/lib/div64.c +++ b/kernel/lib/div64.c @@ -162,7 +162,7 @@ s64 div64_s64(s64 dividend, s64 divisor) { s64 quot, t; - quot = div64_u64(abs64(dividend), abs64(divisor)); + quot = div64_u64(abs(dividend), abs(divisor)); t = (dividend ^ divisor) >> 63; return (quot ^ t) - t; |