[hackers] [slstatus] Use E-notation for large powers of 10 || Laslo Hunhold

From: <git_AT_suckless.org>
Date: Sun, 27 May 2018 19:53:52 +0200 (CEST)

commit 682c0fedde04fe6713539726494ec2db67ba5d2a
Author: Laslo Hunhold <dev_AT_frign.de>
AuthorDate: Sun May 27 17:57:52 2018 +0200
Commit: Aaron Marcher <me_AT_drkhsh.at>
CommitDate: Sun May 27 19:53:36 2018 +0200

    Use E-notation for large powers of 10

diff --git a/components/temperature.c b/components/temperature.c
index 4e27a9d..bbec80b 100644
--- a/components/temperature.c
+++ b/components/temperature.c
_AT_@ -44,6 +44,6 @@
                 }
 
                 /* kelvin to celsius */
- return bprintf("%d", (temp.value - 273150000) / 1000000);
+ return bprintf("%d", (temp.value - 273150000) / 1E6);
         }
 #endif
diff --git a/slstatus.c b/slstatus.c
index 4f7a2fc..7776fd5 100644
--- a/slstatus.c
+++ b/slstatus.c
_AT_@ -36,7 +36,7 @@ difftimespec(struct timespec *res, struct timespec *a, struct timespec *b)
 {
         res->tv_sec = a->tv_sec - b->tv_sec - (a->tv_nsec < b->tv_nsec);
         res->tv_nsec = a->tv_nsec - b->tv_nsec +
- (a->tv_nsec < b->tv_nsec) * 1000000000;
+ (a->tv_nsec < b->tv_nsec) * 1E9;
 }
 
 static void
_AT_@ -116,7 +116,7 @@ main(int argc, char *argv[])
                         difftimespec(&diff, &current, &start);
 
                         intspec.tv_sec = interval / 1000;
- intspec.tv_nsec = (interval % 1000) * 1000000;
+ intspec.tv_nsec = (interval % 1000) * 1E6;
                         difftimespec(&wait, &intspec, &diff);
 
                         if (wait.tv_sec >= 0) {
Received on Sun May 27 2018 - 19:53:52 CEST

This archive was generated by hypermail 2.3.0 : Sun May 27 2018 - 20:00:26 CEST