diff options
author | drkhsh <me@drkhsh.at> | 2022-10-28 00:21:02 +0200 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-10-28 01:03:46 +0200 |
commit | cce2e5ecb05cdf68831fbf44c5ab90f4e16364b3 (patch) | |
tree | 7caa1faa12adf6f32dfaf10a61cc69985b9bcb79 /components/netspeeds.c | |
parent | 3251e911878b78b0aad8fc09c782f8d81c878f75 (diff) | |
download | slstatus-cce2e5ecb05cdf68831fbf44c5ab90f4e16364b3.tar.gz |
radical re-formatting 3/3: Error checks
Check for `< 0` instead of `== -1`.
Fixes coding style. Formatting commits suck, incoherent coding style
sucks more.
https://suckless.org/coding_style/
Diffstat (limited to 'components/netspeeds.c')
-rw-r--r-- | components/netspeeds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/netspeeds.c b/components/netspeeds.c index 97e565b..cde6fa9 100644 --- a/components/netspeeds.c +++ b/components/netspeeds.c @@ -71,7 +71,7 @@ oldrxbytes = rxbytes; - if (getifaddrs(&ifal) == -1) { + if (getifaddrs(&ifal) < 0) { warn("getifaddrs failed"); return NULL; } @@ -105,7 +105,7 @@ oldtxbytes = txbytes; - if (getifaddrs(&ifal) == -1) { + if (getifaddrs(&ifal) < 0) { warn("getifaddrs failed"); return NULL; } |