summaryrefslogtreecommitdiffstats
path: root/openbsd/Battery.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd/Battery.c')
-rw-r--r--openbsd/Battery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd/Battery.c b/openbsd/Battery.c
index 232b1255..b72253e0 100644
--- a/openbsd/Battery.c
+++ b/openbsd/Battery.c
@@ -53,7 +53,7 @@ void Battery_getData(double* level, ACPresence* isOnAC) {
mib[4] = 3;
if (sysctl(mib, 5, &s, &slen, NULL, 0) != -1) {
double charge = s.value;
- *level = 100*(charge / last_full_capacity);
+ *level = 100 * (charge / last_full_capacity);
if (charge >= last_full_capacity) {
*level = 100;
}