summaryrefslogtreecommitdiff
path: root/components/swap.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/swap.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/swap.c')
-rw-r--r--components/swap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/swap.c b/components/swap.c
index 6ae0542..f270d93 100644
--- a/components/swap.c
+++ b/components/swap.c
@@ -204,7 +204,7 @@
return 0;
}
- if(kvm_getswapinfo(kd, swap_info, size, 0 /* Unused flags */) == -1) {
+ if (kvm_getswapinfo(kd, swap_info, size, 0 /* Unused flags */) < 0) {
warn("kvm_getswapinfo:");
kvm_close(kd);
return 0;