summaryrefslogtreecommitdiff
path: root/src/m68k
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2010-07-23 09:14:00 -0400
committerAnthony Green <green@moxielogic.com>2010-07-23 09:14:00 -0400
commitd14178be4c49c3ada44a9fe9efe11d444372ddab (patch)
treead3ccae8704bff17f7b4b43b5cc4ff4af67c366a /src/m68k
parent3f5b1375ab1e2b8e3d593e21b27097a4a50f9b83 (diff)
downloadlibffi-d14178be4c49c3ada44a9fe9efe11d444372ddab.tar.gz
FFI_LAST_ABI fix
Diffstat (limited to 'src/m68k')
-rw-r--r--src/m68k/ffitarget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/m68k/ffitarget.h b/src/m68k/ffitarget.h
index 633717b..3b777ed 100644
--- a/src/m68k/ffitarget.h
+++ b/src/m68k/ffitarget.h
@@ -34,8 +34,8 @@ typedef signed long ffi_sarg;
typedef enum ffi_abi {
FFI_FIRST_ABI = 0,
FFI_SYSV,
- FFI_DEFAULT_ABI = FFI_SYSV,
- FFI_LAST_ABI = FFI_DEFAULT_ABI + 1
+ FFI_LAST_ABI,
+ FFI_DEFAULT_ABI = FFI_SYSV
} ffi_abi;
#endif