natevents.cc (FieldModificationCB): Use a cast to print it right.
2007-01-30 Andreas Tobler <a.tobler@schweiz.org> * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use a cast to print it right. From-SVN: r121362
This commit is contained in:
committed by
Andreas Tobler
parent
b9edb4b11c
commit
78bdbc0647
@@ -200,7 +200,7 @@ FieldModificationCB (jvmtiEnv *env, JNIEnv *jni_env, jthread thread,
|
||||
printf (" field_klass=%#llx object=%#llx field=%#llx signature_type=%c",
|
||||
(unsigned long long) field_klass, (unsigned long long) object,
|
||||
(unsigned long long) field, signature_type);
|
||||
printf (" new_value=%#llx\n", new_value.l);
|
||||
printf (" new_value=%#llx\n", (unsigned long long) new_value.l);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user