From aaac04d9e0cdcdd974c065bbff3d212a5eb5cd3a Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 18 May 2018 20:16:41 -0700 Subject: width: misleading error message. * arith.c (width): Fix incorrect name in type error diagnostic. There is no such function as integer-length. --- arith.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arith.c b/arith.c index 3f2c5d56..e9f8024c 100644 --- a/arith.c +++ b/arith.c @@ -2940,7 +2940,7 @@ val width(val obj) default: break; } - uw_throwf(error_s, lit("integer-length: ~s isn't an integer"), obj, nao); + uw_throwf(error_s, lit("width: ~s isn't an integer"), obj, nao); } val bits(val obj) -- cgit v1.2.3