summaryrefslogtreecommitdiff
path: root/components/netspeeds.c
diff options
context:
space:
mode:
authordrkhsh <me@drkhsh.at>2022-10-28 00:21:02 +0200
committerdrkhsh <me@drkhsh.at>2022-10-28 01:03:46 +0200
commitcce2e5ecb05cdf68831fbf44c5ab90f4e16364b3 (patch)
tree7caa1faa12adf6f32dfaf10a61cc69985b9bcb79 /components/netspeeds.c
parent3251e911878b78b0aad8fc09c782f8d81c878f75 (diff)
downloadslstatus-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.c4
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;
}