diff options
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/touch.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/toys/posix/touch.c b/toys/posix/touch.c index 9b8f7932..30e3748f 100644 --- a/toys/posix/touch.c +++ b/toys/posix/touch.c @@ -46,12 +46,8 @@ int check_date_format(char *date_input) time_t get_time_sec(char *date_input) { int count_date_digit = 0; - char temp_date[12]; - char mm[2]; - char dd[2]; - char hh[2]; - char ss[2]; - char year[4]; + char mm[3]; + char year[5]; time_t time_of_modify; struct tm t_yyyymmddhhss; |