From 2104dc362ca7336d98499a5945ea2a3d371f7568 Mon Sep 17 00:00:00 2001 From: drkhsh Date: Fri, 28 Oct 2022 00:49:31 +0200 Subject: radical re-formatting 1/3: Fix spacing Fixes coding style. Formatting commits suck, incoherent coding style sucks more. https://suckless.org/coding_style/ --- components/battery.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'components/battery.c') diff --git a/components/battery.c b/components/battery.c index 3746095..00ae70a 100644 --- a/components/battery.c +++ b/components/battery.c @@ -226,14 +226,14 @@ if (sysctlbyname(BATTERY_STATE, &state, &len, NULL, 0) < 0 || !len) return NULL; - switch(state) { - case 0: - case 2: - return "+"; - case 1: - return "-"; - default: - return "?"; + switch (state) { + case 0: /* FALLTHROUGH */ + case 2: + return "+"; + case 1: + return "-"; + default: + return "?"; } } -- cgit v1.2.3