aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger
diff options
context:
space:
mode:
authorVlad Dumitrescu <[email protected]>2014-02-05 18:26:03 +0100
committerVlad Dumitrescu <[email protected]>2014-02-05 18:26:03 +0100
commit2a25f7e4925b3a60032aab58c9017858289d6b9e (patch)
treed917bd468a60dbd36ebd721cc3d94a3e880f92a2 /lib/debugger
parent8d71ab498974b5f0623eac50c4f94f62fc229a94 (diff)
downloadotp-2a25f7e4925b3a60032aab58c9017858289d6b9e.tar.gz
otp-2a25f7e4925b3a60032aab58c9017858289d6b9e.tar.bz2
otp-2a25f7e4925b3a60032aab58c9017858289d6b9e.zip
remove unused parameter
Diffstat (limited to 'lib/debugger')
-rw-r--r--lib/debugger/src/int.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/src/int.erl b/lib/debugger/src/int.erl
index bdd671cff1..3d16e64ca1 100644
--- a/lib/debugger/src/int.erl
+++ b/lib/debugger/src/int.erl
@@ -630,10 +630,10 @@ find_beam(Mod, Src) ->
File = filename:join(SrcDir, BeamFile),
case is_file(File) of
true -> File;
- false -> find_beam_1(Mod, BeamFile, SrcDir)
+ false -> find_beam_1(BeamFile, SrcDir)
end.
-find_beam_1(Mod, BeamFile, SrcDir) ->
+find_beam_1(BeamFile, SrcDir) ->
RootDir = filename:dirname(SrcDir),
EbinDir = filename:join(RootDir, "ebin"),
CodePath = [EbinDir | code:get_path()],