From 73561e855842fe75450d789ef11c5fd883f221d0 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 20 Sep 2022 07:36:00 -0700 Subject: ffi: fix accidental reference to a uint type. * ffi.c (make_ffi_type_struct): Change uint to unsigned. This is a typo, but a uint type is coming from somewhere. I discovered this in an environment where there is no uint. --- ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi.c b/ffi.c index dfe90ddc..4c6025d6 100644 --- a/ffi.c +++ b/ffi.c @@ -3742,7 +3742,7 @@ static val make_ffi_type_struct(val syntax, val lisp_type, cobj(coerce(mem_t *, tft), ffi_type_cls, &ffi_type_struct_ops)); ucnum offs = 0; ucnum most_align = 1; - uint prev_bigendian = 0; + unsigned prev_bigendian = 0; int need_out_handler = 0; int bit_offs = 0; const unsigned bits_int = 8 * sizeof(int); -- cgit v1.2.3