projects
/
suckless
/
slstatus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c28643c
)
Use E-notation for large powers of 10
author
Laslo Hunhold
<dev@frign.de>
Sun, 27 May 2018 15:57:52 +0000
(17:57 +0200)
committer
Aaron Marcher
<me@drkhsh.at>
Sun, 27 May 2018 17:53:36 +0000
(19:53 +0200)
components/temperature.c
patch
|
blob
|
history
slstatus.c
patch
|
blob
|
history
diff --git
a/components/temperature.c
b/components/temperature.c
index 4e27a9d708c7d7ef6630e9b69a620e7df39b2ec7..bbec80b710a899840161ed6dfa5efb44b9e649eb 100644
(file)
--- a/
components/temperature.c
+++ b/
components/temperature.c
@@
-44,6
+44,6
@@
}
/* kelvin to celsius */
- return bprintf("%d", (temp.value - 273150000) / 1
000000
);
+ return bprintf("%d", (temp.value - 273150000) / 1
E6
);
}
#endif
diff --git
a/slstatus.c
b/slstatus.c
index 4f7a2fc558172c9a2fde09f347f87ff41f9d732c..7776fd5a4115f33d1db1c4dde447d8eeb64bf170 100644
(file)
--- a/
slstatus.c
+++ b/
slstatus.c
@@
-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) * 1
000000000
;
+ (a->tv_nsec < b->tv_nsec) * 1
E9
;
}
static void
@@
-116,7
+116,7
@@
main(int argc, char *argv[])
difftimespec(&diff, ¤t, &start);
intspec.tv_sec = interval / 1000;
- intspec.tv_nsec = (interval % 1000) * 1
000000
;
+ intspec.tv_nsec = (interval % 1000) * 1
E6
;
difftimespec(&wait, &intspec, &diff);
if (wait.tv_sec >= 0) {