6642405: 4/4 src/share/instrument/JPLISAgent.c line 286: "==" found where assignment "=" expected

Fix incorrect variable assignment in initializeJPLISAgent().

Reviewed-by: ohair, sspitsyn
This commit is contained in:
Daniel D. Daugherty 2008-03-24 16:59:07 -07:00
parent f465e85260
commit ff7433606c

@ -283,7 +283,7 @@ initializeJPLISAgent( JPLISAgent * agent,
checkCapabilities(agent);
/* check phase - if live phase then we don't need the VMInit event */
jvmtierror == (*jvmtienv)->GetPhase(jvmtienv, &phase);
jvmtierror = (*jvmtienv)->GetPhase(jvmtienv, &phase);
jplis_assert(jvmtierror == JVMTI_ERROR_NONE);
if (phase == JVMTI_PHASE_LIVE) {
return JPLIS_INIT_ERROR_NONE;