diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-28 18:57:19 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-28 18:57:19 +0200 |
commit | e4dcba1c103dc28e927e004791e331aaf604383d (patch) | |
tree | a18094ecc54fcea2cb523a802e0c414c3e6f85bf /coreutils/touch.c | |
parent | 776509544123c68bbc128c0fdb2f699062d294cf (diff) | |
download | busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.tar.gz busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.tar.bz2 busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.zip |
*: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/touch.c')
-rw-r--r-- | coreutils/touch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/touch.c b/coreutils/touch.c index 03aac3aa2..afff36b4d 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c | |||
@@ -97,7 +97,7 @@ int touch_main(int argc UNUSED_PARAM, char **argv) | |||
97 | parse_datestr(date_str, &tm_time); | 97 | parse_datestr(date_str, &tm_time); |
98 | 98 | ||
99 | /* Correct any day of week and day of year etc. fields */ | 99 | /* Correct any day of week and day of year etc. fields */ |
100 | tm_time.tm_isdst = -1; /* Be sure to recheck dst */ | 100 | tm_time.tm_isdst = -1; /* Be sure to recheck dst */ |
101 | t = validate_tm_time(date_str, &tm_time); | 101 | t = validate_tm_time(date_str, &tm_time); |
102 | 102 | ||
103 | timebuf[1].tv_sec = timebuf[0].tv_sec = t; | 103 | timebuf[1].tv_sec = timebuf[0].tv_sec = t; |