aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/beam_disasm.erl
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-09-22 17:03:25 +0200
committerHenrik Nord <[email protected]>2011-09-22 17:03:25 +0200
commit9766af5d4bf81bdc66cb7de55484db976e02ac53 (patch)
tree462ac4af55bddec46f7bfda3b614a784af8e6289 /lib/compiler/src/beam_disasm.erl
parent6f5aab7e0ed65e4bc61c910f5b9c183ab56b6d16 (diff)
parent7c11b3f7a00a18fb11918a57ee1d6597ced97a07 (diff)
downloadotp-9766af5d4bf81bdc66cb7de55484db976e02ac53.tar.gz
otp-9766af5d4bf81bdc66cb7de55484db976e02ac53.tar.bz2
otp-9766af5d4bf81bdc66cb7de55484db976e02ac53.zip
Merge branch 'dev' into major
Diffstat (limited to 'lib/compiler/src/beam_disasm.erl')
-rw-r--r--lib/compiler/src/beam_disasm.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_disasm.erl b/lib/compiler/src/beam_disasm.erl
index 410233a0f7..29a634b18e 100644
--- a/lib/compiler/src/beam_disasm.erl
+++ b/lib/compiler/src/beam_disasm.erl
@@ -204,7 +204,7 @@ process_chunks(F) ->
optional_chunk(F, ChunkTag) ->
case beam_lib:chunks(F, [ChunkTag]) of
{ok,{_Module,[{ChunkTag,Chunk}]}} -> Chunk;
- {error,beam_lib,{missing_chunk,_,ChunkTag}} -> none
+ {error,beam_lib,{missing_chunk,_,_}} -> none
end.
%%-----------------------------------------------------------------------