diff options
author | Vlad Dumitrescu <[email protected]> | 2014-02-05 18:26:03 +0100 |
---|---|---|
committer | Vlad Dumitrescu <[email protected]> | 2014-02-05 18:26:03 +0100 |
commit | 2a25f7e4925b3a60032aab58c9017858289d6b9e (patch) | |
tree | d917bd468a60dbd36ebd721cc3d94a3e880f92a2 /lib | |
parent | 8d71ab498974b5f0623eac50c4f94f62fc229a94 (diff) | |
download | otp-2a25f7e4925b3a60032aab58c9017858289d6b9e.tar.gz otp-2a25f7e4925b3a60032aab58c9017858289d6b9e.tar.bz2 otp-2a25f7e4925b3a60032aab58c9017858289d6b9e.zip |
remove unused parameter
Diffstat (limited to 'lib')
-rw-r--r-- | lib/debugger/src/int.erl | 4 |
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()], |