From c08df95dd8ade099cf5ffd12f829b92c6ff0ccce Mon Sep 17 00:00:00 2001 From: Enric Morales Date: Thu, 17 Oct 2019 16:45:44 +0200 Subject: [PATCH] Remove space before parens --- widgets/cpu_openbsd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/cpu_openbsd.lua b/widgets/cpu_openbsd.lua index 3de1324..cf163b2 100644 --- a/widgets/cpu_openbsd.lua +++ b/widgets/cpu_openbsd.lua @@ -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 })