summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
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 02b82372..ed04b3f1 100644
--- a/ffi.c
+++ b/ffi.c
@@ -66,7 +66,7 @@
#define alignof(type) offsetof(struct {char x; type y;}, y)
#define pad_retval(size) (!(size) || convert(size_t, size) > sizeof (ffi_arg) \
- ? (size) \
+ ? (size_t) (size) \
: sizeof (ffi_arg))
#define min(a, b) ((a) < (b) ? (a) : (b))