summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-03-21 11:52:05 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-03-22 08:15:36 -0700
commit886edd92b48ae472511f3468fa4a31fd63e82829 (patch)
tree3e7364391aa6ed2a537ac0875956bffdc24f7166 /ffi.c
parentcd323346c90a9d61f7190845288678404c714e36 (diff)
downloadtxr-886edd92b48ae472511f3468fa4a31fd63e82829.tar.gz
txr-886edd92b48ae472511f3468fa4a31fd63e82829.tar.bz2
txr-886edd92b48ae472511f3468fa4a31fd63e82829.zip
ffi: ffi_uchar_put: statement after declaration.
* ffi.c (ffi_uchar_put): Fix for C90 compat and consistency.
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 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;
}