aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/src/dbg_wx_mon.erl
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-05-20 12:19:22 +0200
committerZandra <[email protected]>2016-05-24 10:03:23 +0200
commit59c8678ca4765cabf1db0aa747eb2735b8af3a42 (patch)
treead3a11e06d91d14625e9b3d63c7c22ab836be0f8 /lib/debugger/src/dbg_wx_mon.erl
parent673876912ae1c0a09d67b53dcec80544fcf517c7 (diff)
downloadotp-59c8678ca4765cabf1db0aa747eb2735b8af3a42.tar.gz
otp-59c8678ca4765cabf1db0aa747eb2735b8af3a42.tar.bz2
otp-59c8678ca4765cabf1db0aa747eb2735b8af3a42.zip
dbg_wx* - fix remaining unmached_return warnings
Diffstat (limited to 'lib/debugger/src/dbg_wx_mon.erl')
-rw-r--r--lib/debugger/src/dbg_wx_mon.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/src/dbg_wx_mon.erl b/lib/debugger/src/dbg_wx_mon.erl
index 345367a911..a32a6894b8 100644
--- a/lib/debugger/src/dbg_wx_mon.erl
+++ b/lib/debugger/src/dbg_wx_mon.erl
@@ -135,7 +135,7 @@ init2(CallingPid, Mode, SFile, GS) ->
%% Start other necessary stuff
dbg_wx_win:init(),
- dbg_wx_winman:start(), % Debugger window manager
+ _ = dbg_wx_winman:start(), % Debugger window manager
%% Create monitor window
Title = "Monitor",
@@ -339,7 +339,7 @@ gui_cmd('Delete All Modules', State) ->
lists:foreach(fun(Mod) -> int:nn(Mod) end, int:interpreted()),
State;
gui_cmd({module, Mod, What}, State) ->
- case What of
+ _ = case What of
delete -> int:nn(Mod);
view ->
Window = dbg_wx_mon_win:get_window(State#state.win),