From 886edd92b48ae472511f3468fa4a31fd63e82829 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 21 Mar 2021 11:52:05 -0700 Subject: ffi: ffi_uchar_put: statement after declaration. * ffi.c (ffi_uchar_put): Fix for C90 compat and consistency. --- ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffi.c') diff --git a/ffi.c b/ffi.c index e4652c2c..2c39ad86 100644 --- a/ffi.c +++ b/ffi.c @@ -692,8 +692,8 @@ static val ffi_char_get(struct txr_ffi_type *tft, mem_t *src, val self) static void ffi_uchar_put(struct txr_ffi_type *tft, val n, mem_t *dst, val self) { - (void) tft; unsigned char v = c_uchar(n, self); + (void) tft; *coerce(unsigned char *, dst) = v; } -- cgit v1.2.3