Skip to content

Commit

Permalink
file_SUITE: eliminate a warning for an unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorng committed Jan 29, 2010
1 parent fc1ddbb commit a656a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kernel/test/file_SUITE.erl
Expand Up @@ -3371,7 +3371,7 @@ read_line_create_files(TestData) ->
[ Function(File) || {Function,File,_,_} <- TestData ].

read_line_remove_files(TestData) ->
[ file:delete(File) || {Function,File,_,_} <- TestData ].
[ file:delete(File) || {_Function,File,_,_} <- TestData ].

read_line_1(suite) ->
[];
Expand Down

0 comments on commit a656a27

Please sign in to comment.