Browse Source

Fix unused variable warn

Seth Falcon 13 years ago
parent
commit
ab61cba478
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/pooled_gs.erl

+ 1 - 1
test/pooled_gs.erl

@@ -69,7 +69,7 @@ handle_call(stop, _From, State) ->
 handle_call(_Request, _From, State) ->
     {noreply, ok, State}.
 
-handle_cast(crash, State) ->
+handle_cast(crash, _State) ->
     erlang:error({pooled_gs, requested_crash});
 handle_cast(_Msg, State) ->
     {noreply, State}.