Remove compile warning

This commit is contained in:
Mickael Remond 2016-08-01 15:35:54 +02:00
parent bf45c9eeee
commit d02d7b2b6a
No known key found for this signature in database
GPG Key ID: E6F6045D79965AA3
1 changed files with 1 additions and 1 deletions

View File

@ -242,5 +242,5 @@ opt_type(_) -> [cluster_nodes, loglevel, modules, net_ticktime].
start_elixir_application() ->
case application:ensure_started(elixir) of
ok -> ok;
{error, Msg} -> ?ERROR_MSG("Elixir application not started.", [])
{error, _Msg} -> ?ERROR_MSG("Elixir application not started.", [])
end.