]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
hwclock: fix typo
authorKarel Zak <kzak@redhat.com>
Tue, 6 May 2014 10:51:42 +0000 (12:51 +0200)
committerKarel Zak <kzak@redhat.com>
Tue, 6 May 2014 10:51:42 +0000 (12:51 +0200)
Reported-by: Stanislav Brabec <sbrabec@suse.cz>
Signed-off-by: Karel Zak <kzak@redhat.com>
sys-utils/hwclock.c

index fe97fcb751a79f13e7a02d9974176e95e345ec31..0abf01fa15336ee8142d194ea6ac08d47e1977e9 100644 (file)
@@ -1208,13 +1208,12 @@ do_adjustment(struct adjtime *adjtime_p,
                adjtime_p->dirty = TRUE;
        } else if (adjtime_p->last_adj_time == 0) {
                if (debug)
-                       printf(_
-                              ("Not setting clock because last adjustment time is zero, "
-                               "so history is bad."));
+                       printf(_("Not setting clock because last adjustment time is zero, "
+                                "so history is bad.\n"));
        } else if (abs(adjtime_p->drift_factor) > MAX_DRIFT) {
                if (debug)
-               printf(_("Not setting clock because drift factor %f is far too high.\n"),
-                      adjtime_p->drift_factor);
+                       printf(_("Not setting clock because drift factor %f is far too high.\n"),
+                               adjtime_p->drift_factor);
        } else {
                int adjustment;
                /* Number of seconds we must insert in the Hardware Clock */