From fea8e9472bdc4a07d4e63b23fa170e371b78e4cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=9A=D1=83?= =?UTF-8?q?=D0=BB=D0=B8=D0=BA=D0=BE=D0=B2?= Date: Wed, 1 Feb 2012 18:33:42 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B2=D1=81=D0=B5=20=D1=81=D0=BB=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BB=D0=B8!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ejobman_receiver.erl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ejobman_receiver.erl b/src/ejobman_receiver.erl index 004a524..acc3904 100644 --- a/src/ejobman_receiver.erl +++ b/src/ejobman_receiver.erl @@ -60,6 +60,7 @@ init(_) -> {ok, New}. %------------------------------------------------------------------------------ + -spec handle_call(any(), any(), #ejr{}) -> {stop, normal, ok, #ejr{}} | {reply, any(), #ejr{}}. @@ -67,8 +68,8 @@ init(_) -> %% Handling call messages %% @since 2011-07-15 11:00 %% -handle_call(stop, _From, St) -> - {stop, normal, ok, St}; +handle_call( stop, _From, St ) -> + { stop, normal, ok, St }; handle_call(status, _From, St) -> {reply, St, St};