From: Karel Zak Date: Mon, 1 Feb 2016 12:43:22 +0000 (+0100) Subject: hwclock: remove extra space from --show output X-Git-Tag: v2.28-rc1~137 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea7f53cdc59ae33fe75724650e6e014ec9d888c2;p=thirdparty%2Futil-linux.git hwclock: remove extra space from --show output Signed-off-by: Karel Zak --- diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c index 32310b6a41..2eb21accb3 100644 --- a/sys-utils/hwclock.c +++ b/sys-utils/hwclock.c @@ -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); } }