diff options
author | Zandra <zandra@erlang.org> | 2016-05-17 15:52:13 +0200 |
---|---|---|
committer | Zandra <zandra@erlang.org> | 2016-05-24 09:59:02 +0200 |
commit | f18d4019fcad4bb98337470a0e2600ec0589dda6 (patch) | |
tree | dec2f58d350e9f0ff91d9972a335696bcebcc01c /lib/debugger | |
parent | 81f3775e8e515672d18863b93992afe1e1cee6d0 (diff) | |
download | erlang-f18d4019fcad4bb98337470a0e2600ec0589dda6.tar.gz |
i - fix unmatched_return warnings
Diffstat (limited to 'lib/debugger')
-rw-r--r-- | lib/debugger/src/i.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/src/i.erl b/lib/debugger/src/i.erl index 4ed5265bdf..2da3e77618 100644 --- a/lib/debugger/src/i.erl +++ b/lib/debugger/src/i.erl @@ -108,7 +108,7 @@ ib(Module,Function,Arity) -> ib(Module,Function,Arity,Cond) -> Breaks1 = int:all_breaks(Module), - int:break_in(Module,Function,Arity), + ok = int:break_in(Module,Function,Arity), Breaks2 = int:all_breaks(Module), lists:foreach(fun({Mod,Line}) -> int:test_at_break(Mod,Line,Cond) end, Breaks2--Breaks1). |