From 7231fa94ce228b1ea31acba5582e95b0c9f40778 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 25 Sep 2013 02:08:42 +0200 Subject: OSXMisc.c: Fix compilation error w/ java6's jint definition (probably clang as well) Regression of commit 4b5435c68c3f12d62dadb395957362eceacfb25c --- src/nativewindow/native/macosx/OSXmisc.m | 4 ++-- 1 file 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]; -- cgit v1.2.3