8150016: small typo in ciReplay code

Changed atol to atoi

Reviewed-by: kvn
This commit is contained in:
Jamsheed Mohammed C M 2016-05-10 00:17:46 -07:00
parent a1e5418d19
commit 4ece44cbfa

View File

@ -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;