Fix handle_call response

This commit is contained in:
Fisher 2012-01-16 12:06:41 +08:00 committed by Tuncer Ayaz
parent b6f3a76694
commit dfb973b8b8

View file

@ -30,7 +30,7 @@ init(Args) ->
{ok, Args}. {ok, Args}.
handle_call(_Request, _From, State) -> handle_call(_Request, _From, State) ->
{noreply, ok, State}. {reply, ok, State}.
handle_cast(_Msg, State) -> handle_cast(_Msg, State) ->
{noreply, State}. {noreply, State}.