Fix compiler warning

pull/448/head
connor rigby 2018-02-15 08:10:45 -08:00
parent 9c4fdb7070
commit f0e3935e28
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ defmodule Farmbot.Firmware do
end
end
defp do_begin_cmd(%Current{fun: fun, args: args, from: from} = current, state, dispatch) do
defp do_begin_cmd(%Current{fun: fun, args: args, from: _from} = current, state, dispatch) do
# Logger.busy 3, "FW Starting: #{fun}: #{inspect from}"
case apply(state.handler_mod, fun, [state.handler | args]) do
:ok ->