diff options
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 149c7ca399b1..deb66fd69f16 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -1024,7 +1024,7 @@ static void prim_mul(EvalState & state, Value * * args, Value & v) static void prim_div(EvalState & state, Value * * args, Value & v) { - int i2 = state.forceInt(*args[1]); + NixInt i2 = state.forceInt(*args[1]); if (i2 == 0) throw EvalError("division by zero"); mkInt(v, state.forceInt(*args[0]) / i2); } |