diff options
author | Laslo Hunhold <dev@frign.de> | 2018-05-27 17:57:52 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-27 19:53:36 +0200 |
commit | 441901d4ef0615f7c0c7c42d33af8c6846b8cb0d (patch) | |
tree | 8fc1eeed459420267490ea47a1f15be7cb97e320 /slstatus.c | |
parent | 80ed2af5b0f75bf206895a864ba0617ae668e4b9 (diff) |
Use E-notation for large powers of 10
Diffstat (limited to 'slstatus.c')
-rw-r--r-- | slstatus.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 @@ -116,7 +116,7 @@ main(int argc, char *argv[]) difftimespec(&diff, ¤t, &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) { |