From 69b2487650782f135db76078c4a7fb841cb936ac Mon Sep 17 00:00:00 2001 From: drkhsh Date: Thu, 27 Oct 2022 23:44:52 +0200 Subject: various: Put paths into defines to avoid line wraps Long, wrapped, multi-line if statements suck to read. This fixes readability in the worst places by packing format strings for paths into defines. --- components/cpu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/cpu.c') diff --git a/components/cpu.c b/components/cpu.c index 254f047..28e9a45 100644 --- a/components/cpu.c +++ b/components/cpu.c @@ -7,16 +7,16 @@ #include "../slstatus.h" #if defined(__linux__) + #define CPU_FREQ "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq" + const char * cpu_freq(const char *unused) { uintmax_t freq; /* in kHz */ - if (pscanf("/sys/devices/system/cpu/cpu0/cpufreq/" - "scaling_cur_freq", "%ju", &freq) != 1) { + if (pscanf(CPU_FREQ, "%ju", &freq) != 1) return NULL; - } return fmt_human(freq * 1000, 1000); } -- cgit v1.2.3