Skip to content

Commit

Permalink
blockdiagram: fix incomplete error msg
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Klotzbuecher <mk@mkio.de>
  • Loading branch information
kmarkus committed Nov 6, 2019
1 parent bbcef7e commit 1aadc9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/blockdiagram.lua
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ function system.startup(self, ni)

local ret = ubx.block_tostate(b, 'active')
if ret ~= 0 then
err_exit(ret, "failed to start block "..bmodel.name..": ", ret)
err_exit(ret, "failed to start block "..bmodel.name..": "..ubx.retval_tostr[ret])
end
end, self.blocks)
-- start the start table blocks in order
Expand Down

0 comments on commit 1aadc9a

Please sign in to comment.