[hackers] [slstatus] Cast CPU percentage to int and fix indenation || Aaron Marcher
commit 6464cea333144a5d0e3baa02c9c9ecad4b3c53bf
Author: Aaron Marcher <me_AT_drkhsh.at>
AuthorDate: Mon May 14 20:54:48 2018 +0200
Commit: Aaron Marcher <me_AT_drkhsh.at>
CommitDate: Mon May 14 20:54:48 2018 +0200
Cast CPU percentage to int and fix indenation
diff --git a/components/cpu.c b/components/cpu.c
index 6551f31..02e7671 100644
--- a/components/cpu.c
+++ b/components/cpu.c
_AT_@ -34,11 +34,11 @@
return NULL;
}
- return bprintf("%d", 100 *
- ((b[0] + b[1] + b[2] + b[5] + b[6]) -
- (a[0] + a[1] + a[2] + a[5] + a[6])) /
- ((b[0] + b[1] + b[2] + b[3] + b[4] + b[5] + b[6]) -
- (a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6])));
+ return bprintf("%d", (int)(100 *
+ ((b[0] + b[1] + b[2] + b[5] + b[6]) -
+ (a[0] + a[1] + a[2] + a[5] + a[6])) /
+ ((b[0] + b[1] + b[2] + b[3] + b[4] + b[5] + b[6]) -
+ (a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6]))));
}
#elif defined(__OpenBSD__)
#include <sys/param.h>
_AT_@ -89,11 +89,11 @@
}
return bprintf("%d", 100 *
- ((a[CP_USER] + a[CP_NICE] + a[CP_SYS] + a[CP_INTR]) -
- (b[CP_USER] + b[CP_NICE] + b[CP_SYS] + b[CP_INTR])) /
- ((a[CP_USER] + a[CP_NICE] + a[CP_SYS] + a[CP_INTR] +
- a[CP_IDLE]) -
- (b[CP_USER] + b[CP_NICE] + b[CP_SYS] + b[CP_INTR] +
- b[CP_IDLE])));
+ ((a[CP_USER] + a[CP_NICE] + a[CP_SYS] + a[CP_INTR]) -
+ (b[CP_USER] + b[CP_NICE] + b[CP_SYS] + b[CP_INTR])) /
+ ((a[CP_USER] + a[CP_NICE] + a[CP_SYS] + a[CP_INTR] +
+ a[CP_IDLE]) -
+ (b[CP_USER] + b[CP_NICE] + b[CP_SYS] + b[CP_INTR] +
+ b[CP_IDLE])));
}
#endif
Received on Mon May 14 2018 - 20:55:23 CEST
This archive was generated by hypermail 2.3.0
: Mon May 14 2018 - 21:00:26 CEST