summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-09-08 14:35:52 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-09-08 14:35:52 +0000
commit8570f7af0a8b92d43832b2d052a541756ac57300 (patch)
tree25cd3d900ecab3451c1305f50ed2ff6dc5b264ac
parent984333b302bad3f00ac3756c341d2d6c28261149 (diff)
downloadATCD-8570f7af0a8b92d43832b2d052a541756ac57300.tar.gz
ChangeLogTag: Sat Sep 8 09:34:52 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--tests/Logging_Strategy_Test.cpp2
4 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e5e93b213f8..7c85eee03b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Sep 8 09:34:52 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Logging_Strategy_Test.cpp: Fixed a typo that was giving
+ compile errors in VXWORKS builds.
+
Fri Sep 7 16:40:37 2001 Priyanka Gontla <pgontla@ece.uci.edu>
* ace/OS.h:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e5e93b213f8..7c85eee03b9 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Sat Sep 8 09:34:52 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Logging_Strategy_Test.cpp: Fixed a typo that was giving
+ compile errors in VXWORKS builds.
+
Fri Sep 7 16:40:37 2001 Priyanka Gontla <pgontla@ece.uci.edu>
* ace/OS.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e5e93b213f8..7c85eee03b9 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Sat Sep 8 09:34:52 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Logging_Strategy_Test.cpp: Fixed a typo that was giving
+ compile errors in VXWORKS builds.
+
Fri Sep 7 16:40:37 2001 Priyanka Gontla <pgontla@ece.uci.edu>
* ace/OS.h:
diff --git a/tests/Logging_Strategy_Test.cpp b/tests/Logging_Strategy_Test.cpp
index 2fac59480f3..689d5432efc 100644
--- a/tests/Logging_Strategy_Test.cpp
+++ b/tests/Logging_Strategy_Test.cpp
@@ -451,7 +451,7 @@ int main (int argc, ACE_TCHAR *argv [])
// statically
ACE_Logging_Strategy logging_strategy;
char ls_argc = argc - 1;
- ACE_Auto_Basic_ptr<ACE_TCHAR *> ls_argv (new ACE_TCHAR *[ls_argc]);
+ ACE_Auto_Basic_Ptr<ACE_TCHAR *> ls_argv (new ACE_TCHAR *[ls_argc]);
for (char c = 0; c < ls_argc; c++)
(ls_argv.get ())[c] = argv[c+1];