diff options
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1983,7 +1983,7 @@ static val rising_product(val m, val n) if (lt(n, one)) return one; - if (ge(m, n)) + if (gt(m, n)) return one; if (lt(m, one)) |