diff options
author | Mickael Remond <mremond@process-one.net> | 2016-08-01 15:35:54 +0200 |
---|---|---|
committer | Mickael Remond <mremond@process-one.net> | 2016-08-01 15:35:54 +0200 |
commit | d02d7b2b6a9c83a47fd2722b9481d385590b8668 (patch) | |
tree | e01747f41ffa9fb973040f19c32348f3cf21a838 | |
parent | Switch mix worker to transient (diff) |
Remove compile warning
-rw-r--r-- | src/ejabberd_app.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ejabberd_app.erl b/src/ejabberd_app.erl index bbeb510dc..6f0b97fa3 100644 --- a/src/ejabberd_app.erl +++ b/src/ejabberd_app.erl @@ -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. |