From 01b8f412e97ec3dd8214f33bc5374d29d27e938e Mon Sep 17 00:00:00 2001 From: "Paul A. Patience" Date: Thu, 2 Sep 2021 01:16:41 -0400 Subject: mmap: fix typo in error message. * ffi.c (mmap_op): mmaped -> mmapped. --- ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi.c b/ffi.c index efd6cd42..c8239a3b 100644 --- a/ffi.c +++ b/ffi.c @@ -6265,7 +6265,7 @@ static val mmap_op(val carray, val offset_in, val size_in, size_t off = 0, sz; if (carray->co.ops != &carray_mmap_ops) - uw_throwf(type_error_s, lit("~a: ~s isn't a mmaped carray"), + uw_throwf(type_error_s, lit("~a: ~s isn't a mmapped carray"), self, carray, nao); if (missingp(offset_in) && missingp(size_in)) { -- cgit v1.2.3