aboutsummaryrefslogtreecommitdiff
path: root/src/share/instrument
diff options
context:
space:
mode:
authordcubed <none@none>2008-03-24 16:59:07 -0700
committerdcubed <none@none>2008-03-24 16:59:07 -0700
commit6cfcc6f3341b1c4ef2019f4733b263ad03953a5d (patch)
treef2d1f2d382dfb785810d0280e654c2ce60cfec98 /src/share/instrument
parentc67a96e1d29fd764e97dd316bb1c93d51cc6634d (diff)
downloadjdk8u_jdk-6cfcc6f3341b1c4ef2019f4733b263ad03953a5d.tar.gz
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
Diffstat (limited to 'src/share/instrument')
-rw-r--r--src/share/instrument/JPLISAgent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/instrument/JPLISAgent.c b/src/share/instrument/JPLISAgent.c
index 738931e8fd..d58305dc41 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;