From 96d3792967210c49a41b2fddfcdfb6b5c429ef56 Mon Sep 17 00:00:00 2001 From: dcubed Date: Mon, 24 Mar 2008 16:59:07 -0700 Subject: [PATCH] 6642405: 4/4 src/share/instrument/JPLISAgent.c line 286: "==" found where assignment "=" expected Summary: Fix incorrect variable assignment in initializeJPLISAgent(). Reviewed-by: ohair, sspitsyn --- src/share/instrument/JPLISAgent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/share/instrument/JPLISAgent.c b/src/share/instrument/JPLISAgent.c index 738931e8f..d58305dc4 100644 --- a/src/share/instrument/JPLISAgent.c +++ b/src/share/instrument/JPLISAgent.c @@ -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; -- GitLab