Skip to content

Commit fca761c

Browse files
authored
Fix printed string
1 parent fc491b4 commit fca761c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hotspot/share/opto/library_call.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6792,7 +6792,7 @@ Node * LibraryCallKit::get_state_from_digest_object(Node *digest_object, BasicTy
67926792

67936793
//------------------------------get_block_size_from_sha3_object----------------------------------
67946794
Node * LibraryCallKit::get_block_size_from_digest_object(Node *digest_object) {
6795-
Node* block_size = load_field_from_object(digest_object, "digestLength", "I");
6795+
Node* block_size = load_field_from_object(digest_object, "blockSize", "I");
67966796
assert (block_size != nullptr, "sanity");
67976797
return block_size;
67986798
}

0 commit comments

Comments
 (0)