diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-05-10 11:05:45 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-05-10 11:05:45 +0200 |
commit | 72edb4e6d3ae5ea0fb356597a4f446178aee41ab (patch) | |
tree | c4bc0d03dcccaf3d156df4f749a08ba8e0505c21 /lib/os_mon/src/cpu_sup.erl | |
parent | 715876f5e6d40bc75ad8f3e6c4c70249aea0fc66 (diff) | |
download | otp-72edb4e6d3ae5ea0fb356597a4f446178aee41ab.tar.gz otp-72edb4e6d3ae5ea0fb356597a4f446178aee41ab.tar.bz2 otp-72edb4e6d3ae5ea0fb356597a4f446178aee41ab.zip |
os_mon: Fix unmatched return warnings
Diffstat (limited to 'lib/os_mon/src/cpu_sup.erl')
-rw-r--r-- | lib/os_mon/src/cpu_sup.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/os_mon/src/cpu_sup.erl b/lib/os_mon/src/cpu_sup.erl index 5664615230..5eb067a5a3 100644 --- a/lib/os_mon/src/cpu_sup.erl +++ b/lib/os_mon/src/cpu_sup.erl @@ -531,11 +531,11 @@ measurement_server_loop(State) -> measurement_server_loop(State) end; {Pid, Request} -> - try get_uint32_measurement(Request, State) of - Result -> Pid ! {data, Result} - catch - Error -> Pid ! {error, Error} - end, + _ = try get_uint32_measurement(Request, State) of + Result -> Pid ! {data, Result} + catch + Error -> Pid ! {error, Error} + end, measurement_server_loop(State); {'EXIT', OldPid, _n} when State#internal.port == OldPid -> {ok, NewPid} = port_server_start_link(), |