aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2015-04-06 12:31:32 +0200
committerMickael Remond <mremond@process-one.net>2015-04-06 12:31:32 +0200
commit1106afb2f6272cb1d1ccbcae494ca8bf0f6c4689 (patch)
tree7bd3a41e78c619ce18778330f160a66c9256d303
parentFix asn1 module compilation with mix (diff)
Remove unused variable
-rw-r--r--mix.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 5dfe44967..997ce4a14 100644
--- a/mix.exs
+++ b/mix.exs
@@ -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