aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/bif.c
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-04-07 16:16:48 +0200
committerHenrik Nord <[email protected]>2011-04-07 16:16:59 +0200
commit5ad09d2928fd4584ce6dc50f44825b3f6d7ef66a (patch)
treed0a3d7062cfb7b87e114fdf37eeaac790beb69d4 /erts/emulator/beam/bif.c
parent4144043663ffe31742c1a7c3fe50135c8382db7c (diff)
parent345454e7dcfd4bc38992870cf5aa5ab7efe0c475 (diff)
downloadotp-5ad09d2928fd4584ce6dc50f44825b3f6d7ef66a.tar.gz
otp-5ad09d2928fd4584ce6dc50f44825b3f6d7ef66a.tar.bz2
otp-5ad09d2928fd4584ce6dc50f44825b3f6d7ef66a.zip
Merge branch 'ta/erts-unused-vars' into dev
* ta/erts-unused-vars: erts: Remove unused variables OTP-9205
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r--erts/emulator/beam/bif.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c
index f01580eb2b..6b1ce823cb 100644
--- a/erts/emulator/beam/bif.c
+++ b/erts/emulator/beam/bif.c
@@ -368,7 +368,6 @@ static int demonitor(Process *c_p, Eterm ref)
ErtsMonitor *mon = NULL; /* The monitor entry to delete */
Process *rp; /* Local target process */
Eterm to = NIL; /* Monitor link traget */
- Eterm ref_p; /* Pid of this end */
DistEntry *dep = NULL; /* Target's distribution entry */
int deref_de = 0;
int res;
@@ -381,7 +380,6 @@ static int demonitor(Process *c_p, Eterm ref)
res = ERTS_DEMONITOR_BADARG;
goto done; /* Cannot be this monitor's ref */
}
- ref_p = c_p->id;
mon = erts_lookup_monitor(c_p->monitors, ref);
if (!mon) {