diff options
Diffstat (limited to 'src/rebar_utils.erl')
-rw-r--r-- | src/rebar_utils.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl index b263644..902feab 100644 --- a/src/rebar_utils.erl +++ b/src/rebar_utils.erl @@ -85,7 +85,7 @@ now_str() -> %% Internal functions %% ==================================================================== -match_first([], Val) -> +match_first([], _Val) -> nomatch; match_first([{Regex, MatchValue} | Rest], Val) -> case re:run(Val, Regex, [{capture, none}]) of |