Skip to content

Commit

Permalink
Fix syntax errors causing compilation failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
aeden committed Apr 7, 2013
1 parent d330f77 commit 2cc97c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erlang/stathat.erl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ init(_Args) ->
{error, Err} -> {stop, {error_starting_inets, Err}}
end.

handle_call(_Request, From, State) ->
handle_call(_Request, _From, State) ->
{reply, {error, unknown_request}, State}.


Expand Down Expand Up @@ -111,7 +111,7 @@ handle_info({_RequestId, _Result}, State) ->
% Again, you might do something here but I won't
{noreply, State};
handle_info(_Request, State) ->
{noreply, State};
{noreply, State}.

terminate(_Reason, _State) ->
ok.
Expand Down

0 comments on commit 2cc97c2

Please sign in to comment.