diff options
author | Sven Gothel <[email protected]> | 2013-09-25 02:08:42 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-09-25 02:08:42 +0200 |
commit | 7231fa94ce228b1ea31acba5582e95b0c9f40778 (patch) | |
tree | d20efa59d81f54b623792818c3d6a1140733fb69 | |
parent | 4b5435c68c3f12d62dadb395957362eceacfb25c (diff) |
OSXMisc.c: Fix compilation error w/ java6's jint definition (probably clang as well)
Regression of commit 4b5435c68c3f12d62dadb395957362eceacfb25c
-rw-r--r-- | src/nativewindow/native/macosx/OSXmisc.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nativewindow/native/macosx/OSXmisc.m b/src/nativewindow/native/macosx/OSXmisc.m index afe3b3868..fbe37be7d 100644 --- a/src/nativewindow/native/macosx/OSXmisc.m +++ b/src/nativewindow/native/macosx/OSXmisc.m @@ -558,10 +558,10 @@ JNIEXPORT void JNICALL Java_jogamp_nativewindow_macosx_OSXUtil_AddCASublayer0 /* * Class: Java_jogamp_nativewindow_macosx_OSXUtil * Method: FixCALayerLayout0 - * Signature: (JJIIIII)V + * Signature: (JJIII)V */ JNIEXPORT void JNICALL Java_jogamp_nativewindow_macosx_OSXUtil_FixCALayerLayout0 - (JNIEnv *env, jclass unused, jlong rootCALayer, jlong subCALayer, jint width, jint height, int caLayerQuirks) + (JNIEnv *env, jclass unused, jlong rootCALayer, jlong subCALayer, jint width, jint height, jint caLayerQuirks) { if( 0 != caLayerQuirks ) { NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; |