X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fnative%2Fvm%2Fgnu%2Fgnu_classpath_VMSystemProperties.c;h=91481a73c94038613d60f56fc5adcca2dc485471;hb=9f859ad50d3d5d98c185d40b86b2179bc4dc9aeb;hp=f4ad3f8b04d83a14ee536bff02ccb182b3d4d8a2;hpb=3dc4427008d0961d0b0a0a010f98a265cd697035;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..91481a73c 100644 --- a/src/native/vm/gnu/gnu_classpath_VMSystemProperties.c +++ b/src/native/vm/gnu/gnu_classpath_VMSystemProperties.c @@ -22,8 +22,6 @@ 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 $ - */ @@ -79,9 +77,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 +99,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();