aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util-linux/hwclock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c
index a8b0bdf93..ac89d45a2 100644
--- a/util-linux/hwclock.c
+++ b/util-linux/hwclock.c
@@ -83,7 +83,7 @@ static void show_clock(const char **pp_rtcname, int utc)
83 /* diff >= 0 is ok: diff < 0, can't just use tv.tv_usec: */ 83 /* diff >= 0 is ok: diff < 0, can't just use tv.tv_usec: */
84 /* 45.520820 43.520820 */ 84 /* 45.520820 43.520820 */
85 /* - 44.000000 - 45.000000 */ 85 /* - 44.000000 - 45.000000 */
86 /* = 0.520820 = -1.479180, not -2.520820! */ 86 /* = 1.520820 = -1.479180, not -2.520820! */
87 diff++; 87 diff++;
88 /* should be 1000000 - tv.tv_usec, but then we must check tv.tv_usec != 0 */ 88 /* should be 1000000 - tv.tv_usec, but then we must check tv.tv_usec != 0 */
89 sys_tv.tv_usec = 999999 - sys_tv.tv_usec; 89 sys_tv.tv_usec = 999999 - sys_tv.tv_usec;