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/entropy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/entropy.c') diff --git a/components/entropy.c b/components/entropy.c index 0544749..66b2e5a 100644 --- a/components/entropy.c +++ b/components/entropy.c @@ -6,15 +6,15 @@ #include "../util.h" + #define ENTROPY_AVAIL "/proc/sys/kernel/random/entropy_avail" + const char * entropy(const char *unused) { uintmax_t num; - if (pscanf("/proc/sys/kernel/random/entropy_avail", "%ju", &num) - != 1) { + if (pscanf(ENTROPY_AVAIL, "%ju", &num) != 1) return NULL; - } return bprintf("%ju", num); } -- cgit v1.2.3