summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-11-15 06:23:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-11-18 14:26:20 -0800
commit8ac85eb2d3fe235d7b3b6a7f72e49d9774214337 (patch)
tree71bfc01ad754c3bf59154371e3ff39e7809006da /ffi.c
parentecf43152d28220ca90725d62aa821829e3ab0a1f (diff)
downloadtxr-8ac85eb2d3fe235d7b3b6a7f72e49d9774214337.tar.gz
txr-8ac85eb2d3fe235d7b3b6a7f72e49d9774214337.tar.bz2
txr-8ac85eb2d3fe235d7b3b6a7f72e49d9774214337.zip
ffi: carray-num using wrong function name.
* ffi.c (carray_num): Use the correct name carray-num rather than carray-unum in diagnostics.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi.c b/ffi.c
index 816afc41..dbaa1ce5 100644
--- a/ffi.c
+++ b/ffi.c
@@ -5392,7 +5392,7 @@ val carray_unum(val num, val eltype_in)
val carray_num(val num, val eltype_in)
{
- val self = lit("carray-unum");
+ val self = lit("carray-num");
val eltype = default_arg(eltype_in, ffi_type_compile(uchar_s));
struct txr_ffi_type *tft = ffi_type_struct(eltype);