Skip to content

Commit c64a959

Browse files
committed
test/hotspot/jtreg/serviceability/jvmti/FiberTest/libFiberTest.c not building
1 parent f5afccc commit c64a959

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/hotspot/jtreg/serviceability/jvmti/FiberTest/libFiberTest.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,9 +617,9 @@ test_GetFiberLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jobject fiber,
617617
printf("JVMTI GetFiberLocalInt with good fiber returned error: %d\n", err);
618618
fatal(jni, "failed during JVMTI GetFiberLocalInt call");
619619
}
620-
printf(" local long value at slot %d: %lld\n", SlotLong, ll);
620+
printf(" local long value at slot %d: %lld\n", SlotLong, (long long)ll);
621621
if (ll != 2L) {
622-
printf(" Failed: Expected local long value: 2L, got %lld\n", ll);
622+
printf(" Failed: Expected local long value: 2L, got %lld\n", (long long)ll);
623623
fatal(jni, "Got unexpected local long value");
624624
}
625625

0 commit comments

Comments
 (0)