diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-01-08 18:02:14 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-01-08 18:02:14 +0100 |
commit | 61d6d3d53a2d7cbe58574236bb444850ae1b56a2 (patch) | |
tree | 0bf2101f0a4f2deaeb161ecee931f656ff86b2fe | |
parent | 3e8a6c8bceea8552ef50bd8dcfc14a0f79c9f32e (diff) | |
download | otp-61d6d3d53a2d7cbe58574236bb444850ae1b56a2.tar.gz otp-61d6d3d53a2d7cbe58574236bb444850ae1b56a2.tar.bz2 otp-61d6d3d53a2d7cbe58574236bb444850ae1b56a2.zip |
os_mon: Remove superfluous match clause
-rw-r--r-- | lib/os_mon/src/os_mon.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/os_mon/src/os_mon.erl b/lib/os_mon/src/os_mon.erl index df1eccb064..19acae9f0e 100644 --- a/lib/os_mon/src/os_mon.erl +++ b/lib/os_mon/src/os_mon.erl @@ -176,9 +176,7 @@ services({unix, sunos}) -> services({unix, _}) -> % Other unix. [cpu_sup, disksup, memsup]; services({win32, _}) -> - [disksup, memsup, os_sup, sysinfo]; -services(_) -> - []. + [disksup, memsup, os_sup, sysinfo]. server_name(cpu_sup) -> cpu_sup; server_name(disksup) -> disksup; |