diff options
author | Siri Hansen <[email protected]> | 2013-04-25 11:07:25 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-05-06 12:14:12 +0200 |
commit | 406413f90cc5d45e17df158b9e742112e9f7657e (patch) | |
tree | db3190c95ab4229890f374b4a33b8c26fce473a2 /lib/stdlib/src/sys.erl | |
parent | 21a7806986d58480367cff8d385a12f9659c7754 (diff) | |
download | otp-406413f90cc5d45e17df158b9e742112e9f7657e.tar.gz otp-406413f90cc5d45e17df158b9e742112e9f7657e.tar.bz2 otp-406413f90cc5d45e17df158b9e742112e9f7657e.zip |
Fix unmatched_return warnings in stdlib
Diffstat (limited to 'lib/stdlib/src/sys.erl')
-rw-r--r-- | lib/stdlib/src/sys.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/sys.erl b/lib/stdlib/src/sys.erl index 5359a6d5bc..04f8dfb61b 100644 --- a/lib/stdlib/src/sys.erl +++ b/lib/stdlib/src/sys.erl @@ -317,7 +317,7 @@ handle_system_msg(Msg, From, Parent, Mod, Debug, Misc, Hib) -> handle_system_msg(SysState, Msg, From, Parent, Mod, Debug, Misc, Hib) -> case do_cmd(SysState, Msg, Parent, Mod, Debug, Misc) of {suspended, Reply, NDebug, NMisc} -> - gen:reply(From, Reply), + _ = gen:reply(From, Reply), suspend_loop(suspended, Parent, Mod, NDebug, NMisc, Hib); {running, Reply, NDebug, NMisc} -> _ = gen:reply(From, Reply), |