summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-05-10 21:17:27 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-05-10 21:17:27 +0000
commit55700aef8fd1cab1e33ec6b8ce83e7c7230395a2 (patch)
tree3245995b28911da4254f3629ba30f713405b10ee /ace
parent84ed6f25e9a19dab9cb73a277fc9a674d53cdc65 (diff)
downloadATCD-55700aef8fd1cab1e33ec6b8ce83e7c7230395a2.tar.gz
ChangeLogTag:Thu May 10 16:12:02 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/ACE.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp
index dc2e05caff5..2f2e01abcc2 100644
--- a/ace/ACE.cpp
+++ b/ace/ACE.cpp
@@ -2415,17 +2415,19 @@ ACE::timestamp (ACE_TCHAR date_and_time[],
#if defined (WIN32)
// Emulate Unix. Win32 does NOT support all the UNIX versions
// below, so DO we need this ifdef.
- static const ACE_TCHAR *day_of_week_name[] = {
+ static const ACE_TCHAR *day_of_week_name[] =
+ {
ACE_LIB_TEXT ("Sun"),
ACE_LIB_TEXT ("Mon"),
ACE_LIB_TEXT ("Tue"),
ACE_LIB_TEXT ("Wed"),
- ACE_LIB_TEXT ("Thr"),
+ ACE_LIB_TEXT ("Thu"),
ACE_LIB_TEXT ("Fri"),
ACE_LIB_TEXT ("Sat")
};
- static const ACE_TCHAR *month_name[] = {
+ static const ACE_TCHAR *month_name[] =
+ {
ACE_LIB_TEXT ("Jan"),
ACE_LIB_TEXT ("Feb"),
ACE_LIB_TEXT ("Mar"),
@@ -2437,7 +2439,8 @@ ACE::timestamp (ACE_TCHAR date_and_time[],
ACE_LIB_TEXT ("Sep"),
ACE_LIB_TEXT ("Oct"),
ACE_LIB_TEXT ("Nov"),
- ACE_LIB_TEXT ("Dec") };
+ ACE_LIB_TEXT ("Dec")
+ };
SYSTEMTIME local;
::GetLocalTime (&local);