diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-28 00:47:26 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-28 00:47:26 +0000 |
| commit | 067a35bc5546e2bf9d3a7e90c42200f2795bd6b8 (patch) | |
| tree | 83aee2add2ead41378a9ab650a07e509952d5b93 | |
| parent | b9d76a1ee4f7c4c2060483bfd5e80c58265807fa (diff) | |
| download | ruby-067a35bc5546e2bf9d3a7e90c42200f2795bd6b8.tar.gz ruby-067a35bc5546e2bf9d3a7e90c42200f2795bd6b8.tar.xz ruby-067a35bc5546e2bf9d3a7e90c42200f2795bd6b8.zip | |
* time.c (time_to_s): fixed typo. [ruby-dev:29162]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | time.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Jul 28 09:41:45 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * time.c (time_to_s): fixed typo. [ruby-dev:29162] + Fri Jul 28 00:26:47 2006 Yukihiro Matsumoto <matz@ruby-lang.org> * math.c (domain_check): ANSI style function arguments @@ -1204,7 +1204,7 @@ time_to_s(VALUE time) time_get_tm(time, tobj->gmt); } if (tobj->gmt == 1) { - len = strftime(buf, 128, "%a %b %d %Y %H:%M:%S UTC", &tobj->tm); + len = strftime(buf, 128, "%a %b %d %H:%M:%S UTC %Y", &tobj->tm); } else { time_t off; |
