nfqws2: timer_enum return only names

This commit is contained in:
bol-van
2026-04-28 10:29:33 +03:00
parent 01a4ee63d4
commit b1afa7079f
2 changed files with 3 additions and 9 deletions
+2 -2
View File
@@ -938,9 +938,9 @@ function test_timer(opts)
print("* timers\n")
local timers=timer_enum()
for i,timer in ipairs(timers) do
for i,name in ipairs(timers) do
print("TIMER "..i.." :")
timer_info_print(timer)
timer_info_print_by_name(name)
end
print()
end