From 4ece44cbfaef95e46fc9357fd0823bcb4044bc41 Mon Sep 17 00:00:00 2001 From: Jamsheed Mohammed C M Date: Tue, 10 May 2016 00:17:46 -0700 Subject: [PATCH] 8150016: small typo in ciReplay code Changed atol to atoi Reviewed-by: kvn --- hotspot/src/share/vm/ci/ciReplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotspot/src/share/vm/ci/ciReplay.cpp b/hotspot/src/share/vm/ci/ciReplay.cpp index 8e3e6fb1ae3..27b00023563 100644 --- a/hotspot/src/share/vm/ci/ciReplay.cpp +++ b/hotspot/src/share/vm/ci/ciReplay.cpp @@ -823,7 +823,7 @@ class CompileReplay : public StackObj { int value = atoi(string_value); java_mirror->short_field_put(fd.offset(), value); } else if (strcmp(field_signature, "Z") == 0) { - int value = atol(string_value); + int value = atoi(string_value); java_mirror->bool_field_put(fd.offset(), value); } else if (strcmp(field_signature, "J") == 0) { jlong value;