summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}