Fix warning about unused variable

This commit is contained in:
Badlop 2010-07-19 12:11:10 +02:00
parent fb2c74c4aa
commit 581f011b28
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ handle_data(_W, {drop, D}, _) -> %% Error case we are missing data here!
handle_data(nopid, {_, _, out, _, _}, _Store) ->
%% ignore - there was probably just a 'drop'
nopid;
handle_data(_, G, _) ->
handle_data(_, _G, _) ->
%% io:format("Erlang top got garbage ~p~n", [G]),
nopid.