8043925: Fix typo in verifier.cpp

Fix lookupswitch

Reviewed-by: sla, coleenp
This commit is contained in:
Yuri Gaevsky 2014-05-23 16:54:01 -04:00 committed by Coleen Phillimore
parent e70b7ac623
commit 4f2c88d8cd

View File

@ -2036,7 +2036,7 @@ void ClassVerifier::verify_switch(
while ((bcp + padding_offset) < aligned_bcp) {
if(*(bcp + padding_offset) != 0) {
verify_error(ErrorContext::bad_code(bci),
"Nonzero padding byte in lookswitch or tableswitch");
"Nonzero padding byte in lookupswitch or tableswitch");
return;
}
padding_offset++;