diff options
author | Björn Gustavsson <[email protected]> | 2010-12-10 05:39:03 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-01-17 15:23:37 +0100 |
commit | d310a5cb703822e95fa4c76c5c8ec566e5027a17 (patch) | |
tree | 0ed1491a091f85b9d55f7c92bea28fb7859779aa /erts/emulator/beam | |
parent | 27d18ae9bb1b17408fc2298c7e171593a8b2e8ca (diff) | |
download | otp-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')
-rw-r--r-- | erts/emulator/beam/beam_debug.c | 2 |
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])); } |