diff options
author | Paul A. Patience <paul@apatience.com> | 2021-09-02 01:16:41 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-11 09:27:10 -0700 |
commit | 927e028829d895a302978a3baa01c653ece7b6d1 (patch) | |
tree | e1351f15f6f8e399a7678fbc80673a0c3820d0f8 /ffi.c | |
parent | 3dcd7bb0633d943a84f2e6e8bf47efca8bb0df16 (diff) | |
download | txr-927e028829d895a302978a3baa01c653ece7b6d1.tar.gz txr-927e028829d895a302978a3baa01c653ece7b6d1.tar.bz2 txr-927e028829d895a302978a3baa01c653ece7b6d1.zip |
mmap: fix typo in error message.
* ffi.c (mmap_op): mmaped -> mmapped.
Diffstat (limited to 'ffi.c')
-rw-r--r-- | ffi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) { |