X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fnative%2Fvm%2Fgnu%2Fgnu_classpath_VMSystemProperties.c;h=d1b1abc25d3d3c212e6b0d480a4e8204e8c1c3aa;hb=58bac0a56dab7d6983a3cfbee7a9b7ffec5a4284;hp=f4ad3f8b04d83a14ee536bff02ccb182b3d4d8a2;hpb=98f01b1e6b31ff3b610dd6906cf108647bfa3dd9;p=cacao.git diff --git a/src/native/vm/gnu/gnu_classpath_VMSystemProperties.c b/src/native/vm/gnu/gnu_classpath_VMSystemProperties.c index f4ad3f8b0..d1b1abc25 100644 --- a/src/native/vm/gnu/gnu_classpath_VMSystemProperties.c +++ b/src/native/vm/gnu/gnu_classpath_VMSystemProperties.c @@ -22,7 +22,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - $Id: gnu_classpath_VMSystemProperties.c 7910 2007-05-16 08:02:52Z twisti $ + $Id: gnu_classpath_VMSystemProperties.c 8295 2007-08-11 17:57:24Z michi $ */ @@ -79,9 +79,9 @@ void _Jv_gnu_classpath_VMSystemProperties_init(void) */ JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_preInit(JNIEnv *env, jclass clazz, java_util_Properties *properties) { - java_objectheader *p; + java_handle_t *p; - p = (java_objectheader *) properties; + p = (java_handle_t *) properties; if (p == NULL) { exceptions_throw_nullpointerexception(); @@ -101,13 +101,13 @@ JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_preInit(JNIEnv *env */ JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_postInit(JNIEnv *env, jclass clazz, java_util_Properties *properties) { - java_objectheader *p; + java_handle_t *p; #if defined(WITH_JRE_LAYOUT) char *path; s4 len; #endif - p = (java_objectheader *) properties; + p = (java_handle_t *) properties; if (p == NULL) { exceptions_throw_nullpointerexception();