Mercurial > flash_v2
changeset 838:8d1a6007aeb1
Fix typo in date initialization (24 -> 14)
| author | gthomas |
|---|---|
| date | Tue, 18 Mar 2003 14:40:46 +0000 |
| parents | 6fa00a58a229 |
| children | 706b0bdaf01c |
| files | packages/language/c/libc/time/current/src/strptime.cxx |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/language/c/libc/time/current/src/strptime.cxx +++ b/packages/language/c/libc/time/current/src/strptime.cxx @@ -189,7 +189,7 @@ strptime (const char *buf, const char *f timeptr->tm_isdst = 0; // Tuesday March 18 14:05:00 2003 UTC timeptr->tm_sec = 0; timeptr->tm_min = 5; - timeptr->tm_hour = 24; + timeptr->tm_hour = 14; timeptr->tm_mday = 18; timeptr->tm_mon = 2; timeptr->tm_year = 103;
