diff options
author | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-07 03:39:45 +0000 |
---|---|---|
committer | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-07 03:39:45 +0000 |
commit | 59d150806a818c277b37c76d3548e778ea8216c5 (patch) | |
tree | 44ffb375e2303092b26ac7c9e6e0f162ab58b407 /ace | |
parent | c3aaa686d63fe2697a4df33bfea8ed39d6aae803 (diff) | |
download | ATCD-59d150806a818c277b37c76d3548e778ea8216c5.tar.gz |
strftime (const char *, ...) -> strftime (char *, ...).
Diffstat (limited to 'ace')
-rw-r--r-- | ace/OS.i | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5741,7 +5741,7 @@ ACE_OS::asctime_r (const struct tm *t, char *buf, int buflen) } ACE_INLINE size_t -ACE_OS::strftime (const char *s, size_t maxsize, const char *format, +ACE_OS::strftime (char *s, size_t maxsize, const char *format, const struct tm *timeptr) { return ::strftime (s, maxsize, format, timeptr); |