diff options
author | Björn Gustavsson <[email protected]> | 2017-12-08 12:27:10 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-12-08 12:27:10 +0100 |
commit | a89f4e93052614cfb98c608f8c1bc093620ac1c9 (patch) | |
tree | 901278a224bda78dc9efa07344fb83b7536791d3 /lib/compiler/src/beam_disasm.erl | |
parent | d61fc50c7cc42628e68cacec33c54fb141fb25c4 (diff) | |
download | otp-a89f4e93052614cfb98c608f8c1bc093620ac1c9.tar.gz otp-a89f4e93052614cfb98c608f8c1bc093620ac1c9.tar.bz2 otp-a89f4e93052614cfb98c608f8c1bc093620ac1c9.zip |
Use the new syntax for retrieving stack traces
Diffstat (limited to 'lib/compiler/src/beam_disasm.erl')
-rw-r--r-- | lib/compiler/src/beam_disasm.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/src/beam_disasm.erl b/lib/compiler/src/beam_disasm.erl index 5858b14409..dc4865487f 100644 --- a/lib/compiler/src/beam_disasm.erl +++ b/lib/compiler/src/beam_disasm.erl @@ -163,8 +163,8 @@ pp_instr(I) -> file(File) -> try process_chunks(File) - catch error:Reason -> - {error,?MODULE,{internal,{Reason,erlang:get_stacktrace()}}} + catch error:Reason:Stack -> + {error,?MODULE,{internal,{Reason,Stack}}} end. %%----------------------------------------------------------------------- |