diff options
Diffstat (limited to 'lib/stdlib/src/sys.erl')
| -rw-r--r-- | lib/stdlib/src/sys.erl | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/stdlib/src/sys.erl b/lib/stdlib/src/sys.erl index c186eab940..04f8dfb61b 100644 --- a/lib/stdlib/src/sys.erl +++ b/lib/stdlib/src/sys.erl @@ -317,10 +317,10 @@ 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), +	    _ = gen:reply(From, Reply),              Mod:system_continue(Parent, NDebug, NMisc)      end. | 
