Skip to content

Commit

Permalink
fix padding on ppc
Browse files Browse the repository at this point in the history
  • Loading branch information
twall committed May 30, 2013
1 parent 962ae79 commit 2b8773a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/sun/jna/Native.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void uncaughtException(Callback c, Throwable e) {
}
MAX_PADDING = Platform.isSPARC() || Platform.isWindows() || Platform.isARM()
|| Platform.isAIX() || Platform.isAndroid()
|| (Platform.isPPC() && Platform.isLinux())
|| Platform.isPPC()
? 8 : LONG_SIZE;
}

Expand Down

0 comments on commit 2b8773a

Please sign in to comment.