summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arith.c b/arith.c
index bd66bfbc..8bc459ca 100644
--- a/arith.c
+++ b/arith.c
@@ -213,7 +213,8 @@ ucnum c_unum(val num)
}
/* fallthrough */
range:
- uw_throwf(error_s, lit("~s given, non-negative expected"), num, nao);
+ uw_throwf(error_s, lit("~s is out of allowed range [0, ~a]"),
+ num, unum(UINT_PTR_MAX), nao);
default:
type_mismatch(lit("~s is not an integer"), num, nao);
}