aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_debug.c
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-12-10 05:39:03 +0100
committerBjörn Gustavsson <[email protected]>2011-01-17 15:23:37 +0100
commitd310a5cb703822e95fa4c76c5c8ec566e5027a17 (patch)
tree0ed1491a091f85b9d55f7c92bea28fb7859779aa /erts/emulator/beam/beam_debug.c
parent27d18ae9bb1b17408fc2298c7e171593a8b2e8ca (diff)
downloadotp-d310a5cb703822e95fa4c76c5c8ec566e5027a17.tar.gz
otp-d310a5cb703822e95fa4c76c5c8ec566e5027a17.tar.bz2
otp-d310a5cb703822e95fa4c76c5c8ec566e5027a17.zip
beam_debug: Change one occurrence of "X[0]" to "x[0]" for consistency
Diffstat (limited to 'erts/emulator/beam/beam_debug.c')
-rw-r--r--erts/emulator/beam/beam_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/beam_debug.c b/erts/emulator/beam/beam_debug.c
index 6f2a21b50a..f73d0b31a2 100644
--- a/erts/emulator/beam/beam_debug.c
+++ b/erts/emulator/beam/beam_debug.c
@@ -405,7 +405,7 @@ print_op(int to, void *to_arg, int op, int size, BeamInstr* addr)
break;
case 'x': /* x(N) */
if (reg_index(ap[0]) == 0) {
- erts_print(to, to_arg, "X[0]");
+ erts_print(to, to_arg, "x[0]");
} else {
erts_print(to, to_arg, "x(%d)", reg_index(ap[0]));
}