Browse Source

fix build

Maxim Sokhatsky 11 years ago
parent
commit
e421c32db2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/server/src/auth_server.erl

+ 1 - 1
apps/server/src/auth_server.erl

@@ -106,7 +106,7 @@ handle_call(_Request, _From, State) -> Reply = ok, {reply, Reply, State}.
 handle_cast(_Msg, State) -> {noreply, State}.
 handle_info({system,Route,Message}, State) ->
     handle_system(Route,Message),
-    {noreply, State}.
+    {noreply, State};
 handle_info(_Info, State) -> {noreply, State}.
 terminate(_Reason, _State) -> ok.
 code_change(_OldVsn, State, _Extra) -> {ok, State}.