summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ffi.c b/ffi.c
index 2c39ad86..a83eea09 100644
--- a/ffi.c
+++ b/ffi.c
@@ -739,10 +739,12 @@ static void ffi_ushort_put(struct txr_ffi_type *tft, val n, mem_t *dst,
static val ffi_ushort_get(struct txr_ffi_type *tft, mem_t *src, val self)
{
+ align_sw_get(unsigned short, src);
unsigned short n = *coerce(unsigned short *, src);
(void) tft;
(void) self;
return num_fast(n);
+ align_sw_end;
}
static void ffi_int_put(struct txr_ffi_type *tft, val n, mem_t *dst, val self)