Browse Source

Fix unused var warning

pull/3/head
Tuncer Ayaz 15 years ago
parent
commit
23781ae460
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_port_compiler.erl

+ 1
- 1
src/rebar_port_compiler.erl View File

@ -237,7 +237,7 @@ merge_each_var([{Key, Value} | Rest], Vars) ->
expand_vars_loop(Vars) ->
expand_vars_loop(Vars, 10).
expand_vars_loop(Vars0, 0) ->
expand_vars_loop(_, 0) ->
?ABORT("Max. expansion reached for ENV vars!\n", []);
expand_vars_loop(Vars0, Count) ->
Vars = lists:foldl(fun({Key, Value}, Acc) ->

Loading…
Cancel
Save