From cce2e5ecb05cdf68831fbf44c5ab90f4e16364b3 Mon Sep 17 00:00:00 2001 From: drkhsh Date: Fri, 28 Oct 2022 00:21:02 +0200 Subject: 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/ --- components/swap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/swap.c') 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; -- cgit v1.2.3