aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_debug.c
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2015-11-02 17:42:00 +0100
committerLukas Larsson <[email protected]>2015-11-02 17:42:00 +0100
commit21761c1ebb586349f2080b6830484f2f96a7da1f (patch)
tree944756d94956ebb0bfac05a38c4713a1396bdaae /erts/emulator/beam/beam_debug.c
parentaf19ef867f4a119b17d6d9cc6df7f448f7cc9715 (diff)
parent72cc231e0186d98e52f7a1debdea624d4bbf1125 (diff)
downloadotp-21761c1ebb586349f2080b6830484f2f96a7da1f.tar.gz
otp-21761c1ebb586349f2080b6830484f2f96a7da1f.tar.bz2
otp-21761c1ebb586349f2080b6830484f2f96a7da1f.zip
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/beam/beam_debug.c')
-rw-r--r--erts/emulator/beam/beam_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/beam/beam_debug.c b/erts/emulator/beam/beam_debug.c
index 3a1d328bbd..0e921d761c 100644
--- a/erts/emulator/beam/beam_debug.c
+++ b/erts/emulator/beam/beam_debug.c
@@ -79,7 +79,7 @@ erts_debug_breakpoint_2(BIF_ALIST_2)
{
Process* p = BIF_P;
Eterm MFA = BIF_ARG_1;
- Eterm bool = BIF_ARG_2;
+ Eterm boolean = BIF_ARG_2;
Eterm* tp;
Eterm mfa[3];
int i;
@@ -87,7 +87,7 @@ erts_debug_breakpoint_2(BIF_ALIST_2)
Eterm res;
BpFunctions f;
- if (bool != am_true && bool != am_false)
+ if (boolean != am_true && boolean != am_false)
goto error;
if (is_not_tuple(MFA)) {
@@ -124,7 +124,7 @@ erts_debug_breakpoint_2(BIF_ALIST_2)
erts_smp_thr_progress_block();
erts_bp_match_functions(&f, mfa, specified);
- if (bool == am_true) {
+ if (boolean == am_true) {
erts_set_debug_break(&f);
erts_install_breakpoints(&f);
erts_commit_staged_bp();