summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.h b/macros.h
index cd8c20114..55007c594 100644
--- a/macros.h
+++ b/macros.h
@@ -55,7 +55,7 @@ static inline uint32 BIGMULUS(uint32 a, uint32 b, int shift) {
}
static inline int64 BIGMULS(int32 a, int32 b) {
- return (int32)(((int64)(a) * (int64)(b)));
+ return (int64)(a) * (int64)(b);
}
/* OPT: optimized into an unsigned comparison */