summaryrefslogtreecommitdiff
path: root/src/moxie
diff options
context:
space:
mode:
authorGregory Pakosz <gregory.pakosz@gmail.com>2018-09-18 15:19:53 +0200
committerGregory Pakosz <gregory.pakosz@gmail.com>2018-09-18 15:19:53 +0200
commite6eac7863e2bf1a009ea863041b354bdb4af6b67 (patch)
treeb48106c66d5353056ca426954c02c798ef488b4b /src/moxie
parent980908b47bbde09fab88ee4b2b61d8bc5d4378a7 (diff)
downloadlibffi-e6eac7863e2bf1a009ea863041b354bdb4af6b67.tar.gz
Prefix ALIGN_DOWN macro with FFI_
Diffstat (limited to 'src/moxie')
-rw-r--r--src/moxie/ffi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/moxie/ffi.c b/src/moxie/ffi.c
index 21144e8..16d2bb3 100644
--- a/src/moxie/ffi.c
+++ b/src/moxie/ffi.c
@@ -100,7 +100,7 @@ void *ffi_prep_args(char *stack, extended_cif *ecif)
count += z;
}
- return (stack + ((count > 24) ? 24 : ALIGN_DOWN(count, 8)));
+ return (stack + ((count > 24) ? 24 : FFI_ALIGN_DOWN(count, 8)));
}
/* Perform machine dependent cif processing */