From 8ac85eb2d3fe235d7b3b6a7f72e49d9774214337 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 15 Nov 2019 06:23:56 -0800 Subject: ffi: carray-num using wrong function name. * ffi.c (carray_num): Use the correct name carray-num rather than carray-unum in diagnostics. --- ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3