24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-06 21:37:17 +02:00

Remove unused variable

This commit is contained in:
Mickael Remond 2015-04-06 12:31:32 +02:00
parent cf83a75ceb
commit 1106afb2f6

View File

@ -64,7 +64,7 @@ defmodule Mix.Tasks.Compile.Asn1 do
Erlang.compile(manifest(), mappings, :asn1, :erl, opts[:force], fn
input, output ->
options = options ++ [:noobj, outdir: Erlang.to_erl_file(Path.dirname(output))]
result = :asn1ct.compile(Erlang.to_erl_file(input), options)
:asn1ct.compile(Erlang.to_erl_file(input), options)
:ok
end)
end