summaryrefslogtreecommitdiff
path: root/src/nios2/ffi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nios2/ffi.c')
-rw-r--r--src/nios2/ffi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nios2/ffi.c b/src/nios2/ffi.c
index 2efa033..721080d 100644
--- a/src/nios2/ffi.c
+++ b/src/nios2/ffi.c
@@ -101,7 +101,7 @@ void ffi_prep_args (char *stack, extended_cif *ecif)
/* Align argp as appropriate for the argument type. */
if ((alignment - 1) & (unsigned) argp)
- argp = (char *) ALIGN (argp, alignment);
+ argp = (char *) FFI_ALIGN (argp, alignment);
/* Copy the argument, promoting integral types smaller than a
word to word size. */
@@ -230,7 +230,7 @@ ffi_closure_helper (unsigned char *args,
/* Align argp as appropriate for the argument type. */
if ((alignment - 1) & (unsigned) argp)
- argp = (char *) ALIGN (argp, alignment);
+ argp = (char *) FFI_ALIGN (argp, alignment);
/* Arguments smaller than an int are promoted to int. */
if (size < sizeof (int))