diff options
author | Zandra Hird <[email protected]> | 2016-06-08 14:19:02 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2016-06-08 14:19:02 +0200 |
commit | b6883e187a88b539fdee3fd6acb7a2554edcd196 (patch) | |
tree | 067d01a3f7051f098ed369b934bbb9d47ac60024 /lib/debugger/src/i.erl | |
parent | 41d1444bb13317f78fdf600a7102ff9f7cb12d13 (diff) | |
parent | 59c8678ca4765cabf1db0aa747eb2735b8af3a42 (diff) | |
download | otp-b6883e187a88b539fdee3fd6acb7a2554edcd196.tar.gz otp-b6883e187a88b539fdee3fd6acb7a2554edcd196.tar.bz2 otp-b6883e187a88b539fdee3fd6acb7a2554edcd196.zip |
Merge branch 'zandra/debugger/unmatched_returns/OTP-13345'
* zandra/debugger/unmatched_returns/OTP-13345:
dbg_wx* - fix remaining unmached_return warnings
dbg_wx_* - fix unmatched return warnings
int - fix unmatched_return warnings
i - fix unmatched_return warnings
dbg_debugged - fix unmatched_return warnings
dbg_iserver - fix unmatched_return warnings
Diffstat (limited to 'lib/debugger/src/i.erl')
-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). |