diff options
author | Torstein Husebø <torstein@huseboe.net> | 2014-12-10 20:00:07 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-12-11 15:08:35 +0100 |
commit | cc13b327297bb616f8adca10c7503581c8bc5b93 (patch) | |
tree | f96e8c7dfdbcd2b0c9b825514e40f6f9cd95bd54 /src/shared/clock-util.c | |
parent | 7517e17443225fafea86b21e42a36af69feb1dbc (diff) |
shared: correct spacing near eol in code comments
Diffstat (limited to 'src/shared/clock-util.c')
-rw-r--r-- | src/shared/clock-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/clock-util.c b/src/shared/clock-util.c index fc49393c72..96684681a4 100644 --- a/src/shared/clock-util.c +++ b/src/shared/clock-util.c @@ -121,7 +121,7 @@ int clock_set_timezone(int *min) { minutesdelta = tm->tm_gmtoff / 60; tz.tz_minuteswest = -minutesdelta; - tz.tz_dsttime = 0; /* DST_NONE*/ + tz.tz_dsttime = 0; /* DST_NONE */ /* * If the RTC does not run in UTC but in local time, the very first @@ -141,7 +141,7 @@ int clock_reset_timewarp(void) { struct timezone tz; tz.tz_minuteswest = 0; - tz.tz_dsttime = 0; /* DST_NONE*/ + tz.tz_dsttime = 0; /* DST_NONE */ /* * The very first call to settimeofday() does time warp magic. Do a |