浏览代码

Fix handle_call response

pull/3/head
Fisher 13 年前
提交者 Tuncer Ayaz
父节点
当前提交
dfb973b8b8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      priv/templates/simplesrv.erl

+ 1
- 1
priv/templates/simplesrv.erl 查看文件

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

正在加载...
取消
保存