From d02d7b2b6a9c83a47fd2722b9481d385590b8668 Mon Sep 17 00:00:00 2001 From: Mickael Remond Date: Mon, 1 Aug 2016 15:35:54 +0200 Subject: [PATCH] Remove compile warning --- src/ejabberd_app.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.50.1