aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_debug.c
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2015-08-25 12:40:37 +0200
committerLukas Larsson <[email protected]>2015-08-25 12:49:37 +0200
commitf76ba62c7869bb7bbda27446d0a9f7214062db4f (patch)
tree6401f69f63b4eedae06181f87a18ab732d601b10 /erts/emulator/beam/beam_debug.c
parent0b29b85757d186a5cc94aaa1761e812c95fec2d0 (diff)
downloadotp-f76ba62c7869bb7bbda27446d0a9f7214062db4f.tar.gz
otp-f76ba62c7869bb7bbda27446d0a9f7214062db4f.tar.bz2
otp-f76ba62c7869bb7bbda27446d0a9f7214062db4f.zip
erts: bool is a reserved word, use boolean instead
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 c774a70d4c..90985e4f53 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();