]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
hwclock: remove extra space from --show output
authorKarel Zak <kzak@redhat.com>
Mon, 1 Feb 2016 12:43:22 +0000 (13:43 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 1 Feb 2016 12:43:22 +0000 (13:43 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
sys-utils/hwclock.c

index 32310b6a41122db30a679d1edbf35294525a6b7c..2eb21accb3da7c372f8f446a6daaacd22f017be1 100644 (file)
@@ -693,7 +693,7 @@ display_time(const bool hclock_valid, struct timeval hwctime)
 
                lt = localtime(&hwctime.tv_sec);
                strftime(ctime_now, sizeof(ctime_now), format, lt);
-               printf(_("%s  and %06d microseconds\n"), ctime_now, (int)hwctime.tv_usec);
+               printf(_("%s and %06d microseconds\n"), ctime_now, (int)hwctime.tv_usec);
        }
 }