diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-11-15 06:23:56 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-11-18 14:26:20 -0800 |
commit | 8ac85eb2d3fe235d7b3b6a7f72e49d9774214337 (patch) | |
tree | 71bfc01ad754c3bf59154371e3ff39e7809006da /ffi.c | |
parent | ecf43152d28220ca90725d62aa821829e3ab0a1f (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |