Skip to content
Snippets Groups Projects
Commit 842ab702 authored by David Trattnig's avatar David Trattnig
Browse files

fix: get rid of warning for unused var

parent cbc713de
No related branches found
No related tags found
Loading
Pipeline #2740 passed
......@@ -93,6 +93,7 @@ server.register(namespace = source.id(input_queue_0),
log("Rolling #{t} seconds")
t = float_of_string(default=0.,t)
ret = source.seek(input_queue_0, t)
ignore(ret)
"OK"
end
)
......@@ -108,6 +109,7 @@ server.register(namespace = source.id(input_queue_1),
log("Rolling #{t} seconds")
t = float_of_string(default=0.,t)
ret = source.seek(input_queue_1, t)
ignore(ret)
"OK"
end
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment