diff options
author | drkhsh <me@drkhsh.at> | 2022-10-28 00:51:34 +0200 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-10-28 01:03:38 +0200 |
commit | 3251e911878b78b0aad8fc09c782f8d81c878f75 (patch) | |
tree | dc9b6927e963a994286babd803357615c9b37a22 /components/run_command.c | |
parent | 2104dc362ca7336d98499a5945ea2a3d371f7568 (diff) | |
download | slstatus-3251e911878b78b0aad8fc09c782f8d81c878f75.tar.gz |
radical re-formatting 2/3: Fix blocks
Fixes coding style. Formatting commits suck, incoherent coding style
sucks more.
https://suckless.org/coding_style/
Diffstat (limited to 'components/run_command.c')
-rw-r--r-- | components/run_command.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/run_command.c b/components/run_command.c index 942f3c4..93bf6da 100644 --- a/components/run_command.c +++ b/components/run_command.c @@ -15,17 +15,17 @@ run_command(const char *cmd) warn("popen '%s':", cmd); return NULL; } + p = fgets(buf, sizeof(buf) - 1, fp); if (pclose(fp) < 0) { warn("pclose '%s':", cmd); return NULL; } - if (!p) { + if (!p) return NULL; - } - if ((p = strrchr(buf, '\n'))) { + + if ((p = strrchr(buf, '\n'))) p[0] = '\0'; - } return buf[0] ? buf : NULL; } |