diff options
author | Dan Gudmundsson <[email protected]> | 2012-08-21 10:27:07 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-08-21 10:27:07 +0200 |
commit | 8a165db14fd2e2f0a3239f55f96869bdb2f2c7c5 (patch) | |
tree | a3115a1b1cf389378823b32e0762c8aa5aa0b0eb /lib/observer/src/observer_perf_wx.erl | |
parent | 5c840fae80ece293a5a3fc2fc2698771d7d9d200 (diff) | |
parent | 3af8c55fb68b7047ff1f8c333528167c875c2cbc (diff) | |
download | otp-8a165db14fd2e2f0a3239f55f96869bdb2f2c7c5.tar.gz otp-8a165db14fd2e2f0a3239f55f96869bdb2f2c7c5.tar.bz2 otp-8a165db14fd2e2f0a3239f55f96869bdb2f2c7c5.zip |
Merge branch 'dgud/observer/bug-fixes/OTP-10075' into maint
* dgud/observer/bug-fixes/OTP-10075:
[observer] Fix dialyser warnings
Format latin binary strings in table viewer
Fix process_info from app tab on other nodes
Diffstat (limited to 'lib/observer/src/observer_perf_wx.erl')
-rw-r--r-- | lib/observer/src/observer_perf_wx.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/src/observer_perf_wx.erl b/lib/observer/src/observer_perf_wx.erl index fa867e12f6..abf90ac612 100644 --- a/lib/observer/src/observer_perf_wx.erl +++ b/lib/observer/src/observer_perf_wx.erl @@ -123,7 +123,7 @@ init([Notebook, Parent]) -> }} catch _:Err -> io:format("~p crashed ~p: ~p~n",[?MODULE, Err, erlang:get_stacktrace()]), - {error, Err} + {stop, Err} end. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |