diff -r 04c9b7111aac -r c78a17d24618 test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/localtab004.cpp --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/localtab004.cpp Tue Dec 11 13:22:20 2018 -0500 +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetLocalVariableTable/localtab004/localtab004.cpp Tue Dec 11 10:29:30 2018 -0800 @@ -104,7 +104,7 @@ methInfo[i].mid = jni_env->GetStaticMethodID(testedCls, methInfo[i].m_name, methInfo[i].m_sign); if (methInfo[i].mid == NULL) { NSK_COMPLAIN3("TEST FAILURE: unable to get the method ID for the %s method \"%s\", signature \"%s\"\n\n", - methInfo[i].inst?"instance":"static", + methInfo[i].inst ? "instance" : "static", methInfo[i].m_name, methInfo[i].m_sign); return STATUS_FAILED; } @@ -112,7 +112,7 @@ /* get the LocalVariableTable attribute */ if (!NSK_JVMTI_VERIFY(jvmti->GetLocalVariableTable(methInfo[i].mid, &count, &lv_table))) { NSK_COMPLAIN3("TEST FAILED: unable to get local variable table\n\tfor the %s method \"%s\", signature \"%s\"\n\n", - methInfo[i].inst?"instance":"static", + methInfo[i].inst ? "instance" : "static", methInfo[i].m_name, methInfo[i].m_sign); return STATUS_FAILED; } else { @@ -121,7 +121,7 @@ NSK_COMPLAIN5( "TEST FAILED: %s method \"%s\", signature \"%s\": found %d vars in the LocalVariableTable, expected %d\n" "\tHere are the found vars:\n", - methInfo[i].inst?"instance":"static", + methInfo[i].inst ? "instance" : "static", methInfo[i].m_name, methInfo[i].m_sign, count, methInfo[i].vcount); for (j=0; j