Remove space before parens

This commit is contained in:
Enric Morales 2019-10-17 16:45:44 +02:00
parent f903a1ef06
commit c08df95dd8
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ function cpu_openbsd.async(format, warg, callback)
for i = 1, 6 do cpu_total = cpu_total + period_ticks[i] end
for i = 1, 5 do cpu_busy = cpu_busy + period_ticks[i] end
local cpu_usage = math.ceil((cpu_busy / cpu_total) * 100 )
local cpu_usage = math.ceil((cpu_busy / cpu_total) * 100)
cpu_openbsd.ticks = current_ticks
return callback({ cpu_usage })