natevents.cc (FieldModificationCB): Use %#llx instead of %d for new_value.

* testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use
        %#llx instead of %d for new_value.
        * testsuite/libjava.jvmti/events.out: Update expected output.
        * testsuite/libjava.jvmti/events.jar: Regenerate.

From-SVN: r120834
This commit is contained in:
Keith Seitz 2007-01-16 19:58:18 +00:00 committed by Keith Seitz
parent f031b5d726
commit 2797f081d4
4 changed files with 9 additions and 2 deletions

View file

@ -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=%d\n", (int) new_value.i);
printf (" new_value=%#llx\n", new_value.l);
}
static void