diff options
author | Kenneth Russel <[email protected]> | 2005-01-27 04:06:58 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-01-27 04:06:58 +0000 |
commit | 0b82fed98ee48bbe2a199303bac626d480fa6a96 (patch) | |
tree | 36f4a4e7c893df32b1c44885a99077fbd8b7ca54 /make/stub_includes | |
parent | 299114910ea37093558722420b20e6d2944a1a5f (diff) |
Fixed incorrect typedef of jint to long; is now int
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@189 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/stub_includes')
-rw-r--r-- | make/stub_includes/macosx/jni_md.h | 2 | ||||
-rw-r--r-- | make/stub_includes/win32/jni_md.h | 2 | ||||
-rw-r--r-- | make/stub_includes/x11/jni_md.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/make/stub_includes/macosx/jni_md.h b/make/stub_includes/macosx/jni_md.h index 3c2987529..449786272 100644 --- a/make/stub_includes/macosx/jni_md.h +++ b/make/stub_includes/macosx/jni_md.h @@ -3,7 +3,7 @@ #define JNIIMPORT #define JNICALL -typedef long jint; +typedef int jint; #ifdef _LP64 /* 64-bit Solaris */ typedef long jlong; #else diff --git a/make/stub_includes/win32/jni_md.h b/make/stub_includes/win32/jni_md.h index c2ccd0d45..0c020e8e9 100644 --- a/make/stub_includes/win32/jni_md.h +++ b/make/stub_includes/win32/jni_md.h @@ -3,7 +3,7 @@ #define JNIIMPORT #define JNICALL -typedef long jint; +typedef int jint; typedef __int64 jlong; typedef signed char jbyte; diff --git a/make/stub_includes/x11/jni_md.h b/make/stub_includes/x11/jni_md.h index 3c2987529..449786272 100644 --- a/make/stub_includes/x11/jni_md.h +++ b/make/stub_includes/x11/jni_md.h @@ -3,7 +3,7 @@ #define JNIIMPORT #define JNICALL -typedef long jint; +typedef int jint; #ifdef _LP64 /* 64-bit Solaris */ typedef long jlong; #else |