Browse Source

Fix handle_call response

pull/3/head
Fisher 13 years ago
committed by Tuncer Ayaz
parent
commit
dfb973b8b8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      priv/templates/simplesrv.erl

+ 1
- 1
priv/templates/simplesrv.erl 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}.

Loading…
Cancel
Save