summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authordrkhsh <me@drkhsh.at>2022-10-28 00:49:31 +0200
committerRafael Marçalo <raroma09@gmail.com>2022-10-28 22:22:49 +0100
commit35249fb0feb52a7fcaab2d2322c073b042c68453 (patch)
tree9c464c22ccea5000d888e98c3ce187340eda23aa /components
parenta50807c7c0e07d399ee4d4224306f2eb5bba413d (diff)
radical re-formatting 1/3: Fix spacing
Fixes coding style. Formatting commits suck, incoherent coding style sucks more. https://suckless.org/coding_style/
Diffstat (limited to 'components')
-rw-r--r--components/battery.c16
-rw-r--r--components/swap.c10
-rw-r--r--components/wifi.c2
3 files changed, 14 insertions, 14 deletions
diff --git a/components/battery.c b/components/battery.c
index 3746095..00ae70a 100644
--- a/components/battery.c
+++ b/components/battery.c
@@ -226,14 +226,14 @@
if (sysctlbyname(BATTERY_STATE, &state, &len, NULL, 0) < 0 || !len)
return NULL;
- switch(state) {
- case 0:
- case 2:
- return "+";
- case 1:
- return "-";
- default:
- return "?";
+ switch (state) {
+ case 0: /* FALLTHROUGH */
+ case 2:
+ return "+";
+ case 1:
+ return "-";
+ default:
+ return "?";
}
}
diff --git a/components/swap.c b/components/swap.c
index 523d9cd..7ae0c7f 100644
--- a/components/swap.c
+++ b/components/swap.c
@@ -210,7 +210,7 @@
kvm_t *kd;
kd = kvm_openfiles(NULL, "/dev/null", NULL, 0, NULL);
- if(kd == NULL) {
+ if (kd == NULL) {
warn("kvm_openfiles '/dev/null':");
return 0;
}
@@ -231,7 +231,7 @@
struct kvm_swap swap_info[1];
long used, total;
- if(!getswapinfo(swap_info, 1))
+ if (!getswapinfo(swap_info, 1))
return NULL;
total = swap_info[0].ksw_total;
@@ -246,7 +246,7 @@
struct kvm_swap swap_info[1];
long used, total;
- if(!getswapinfo(swap_info, 1))
+ if (!getswapinfo(swap_info, 1))
return NULL;
total = swap_info[0].ksw_total;
@@ -261,7 +261,7 @@
struct kvm_swap swap_info[1];
long total;
- if(!getswapinfo(swap_info, 1))
+ if (!getswapinfo(swap_info, 1))
return NULL;
total = swap_info[0].ksw_total;
@@ -275,7 +275,7 @@
struct kvm_swap swap_info[1];
long used;
- if(!getswapinfo(swap_info, 1))
+ if (!getswapinfo(swap_info, 1))
return NULL;
used = swap_info[0].ksw_used;
diff --git a/components/wifi.c b/components/wifi.c
index d75a613..a20e8d4 100644
--- a/components/wifi.c
+++ b/components/wifi.c
@@ -257,7 +257,7 @@
fmt = NULL;
len = sizeof(ssid);
memset(&ssid, 0, len);
- if (load_ieee80211req(sockfd, interface, &ssid, IEEE80211_IOC_SSID, &len )) {
+ if (load_ieee80211req(sockfd, interface, &ssid, IEEE80211_IOC_SSID, &len)) {
if (len < sizeof(ssid))
len += 1;
else