Skip to content

Commit

Permalink
ubx-mq: fix error msg string
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Klotzbuecher <mk@mkio.de>
  • Loading branch information
kmarkus committed Jul 22, 2020
1 parent 4ce7f5b commit c153f06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/ubx-mq
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ elseif opttab[0][1] == "read" then
local mq_id = opttab[0][2]

if not mq_id then
print("read expects an argument QUEUE")
print("read expects an argument MQ-ID")
os.exit(1)
end

Expand All @@ -241,7 +241,7 @@ elseif opttab[0][1] == "write" then
local mq_id = opttab[0][2]

if not mq_id then
print("write expects an argument QUEUE")
print("write expects arguments MQ-ID and VALUE")
os.exit(1)
end

Expand Down

0 comments on commit c153f06

Please sign in to comment.