Skip to content

Commit

Permalink
Remove undeclared variable
Browse files Browse the repository at this point in the history
  • Loading branch information
dpino committed Jun 13, 2018
1 parent 60b37d4 commit 0e306ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/program/alarms/listen/listen.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ local function parse_command_line(args)
local handlers = {}
function handlers.h() show_usage(0) end
args = lib.dogetopt(args, handlers, "h", {help="h"})
if #args ~= 1 then show_usage(1, msg) end
if #args ~= 1 then show_usage(1) end
return unpack(args)
end

Expand Down

0 comments on commit 0e306ee

Please sign in to comment.