summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-12 05:15:27 +0000
committercrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-12 05:15:27 +0000
commit9924cfdeaa02d1f9535003c8f70cac1aca71b665 (patch)
treee6d10c897947a477708a4d8bcc17921737b9031c
parente412079b08f45ebf6074daf470529c7a21be61a4 (diff)
downloadATCD-9924cfdeaa02d1f9535003c8f70cac1aca71b665.tar.gz
ChangeLogTag: Sun Nov 11 23:50:00 2001 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rw-r--r--TAO/tests/Exposed_Policies/Policy_Tester.cpp2
-rw-r--r--tests/Arg_Shifter_Test.cpp2
-rw-r--r--tests/Date_Time_Test.cpp2
7 files changed, 27 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a97a078b7a..f4e66c8d75f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Nov 11 23:50:00 2001 Craig Rodrigues <crodrigu@bbn.com>
+
+ * tests/Date_Time_Test.cpp: Remove argv variable from
+ main() to eliminate unused variable compiler warning.
+ * tests/Arg_Shifter_Test.cpp: Same.
+
Sun Nov 11 10:00:56 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Stream.h (ACE_SSL_SOCK_Stream):
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 1a97a078b7a..f4e66c8d75f 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Sun Nov 11 23:50:00 2001 Craig Rodrigues <crodrigu@bbn.com>
+
+ * tests/Date_Time_Test.cpp: Remove argv variable from
+ main() to eliminate unused variable compiler warning.
+ * tests/Arg_Shifter_Test.cpp: Same.
+
Sun Nov 11 10:00:56 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Stream.h (ACE_SSL_SOCK_Stream):
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 1a97a078b7a..f4e66c8d75f 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Sun Nov 11 23:50:00 2001 Craig Rodrigues <crodrigu@bbn.com>
+
+ * tests/Date_Time_Test.cpp: Remove argv variable from
+ main() to eliminate unused variable compiler warning.
+ * tests/Arg_Shifter_Test.cpp: Same.
+
Sun Nov 11 10:00:56 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Stream.h (ACE_SSL_SOCK_Stream):
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 757971e18e1..8646d0cbd98 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Sun Nov 11 23:50:00 2001 Craig Rodrigues <crodrigu@bbn.com>
+
+ * tests/Exposed_Policies/Policy_Tester.cpp:
+ More const char * fixes.
+
Sun Nov 11 14:15:23 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* docs/configurations.html: Fixed some documentation
@@ -723,7 +728,7 @@ Mon Oct 15 22:41:17 2001 Christopher Kohlhoff <chris@kohlhoff.com>
by setting an environment variable MINIMUM_CORBA to 1. Thanks to
Adrian Mercieca <adrian@anvilmalta.com> for motivating this.
-Fri Oct 12 00:42:42 2001 Craig Rodriguse <crodrigu@bbn.com>
+Fri Oct 12 00:42:42 2001 Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/orbsvcs/AV/AVStreams_i.cpp:
* orbsvcs/orbsvcs/AV/AVStreams_i.i:
diff --git a/TAO/tests/Exposed_Policies/Policy_Tester.cpp b/TAO/tests/Exposed_Policies/Policy_Tester.cpp
index 4c2c78a79c8..841d29cd783 100644
--- a/TAO/tests/Exposed_Policies/Policy_Tester.cpp
+++ b/TAO/tests/Exposed_Policies/Policy_Tester.cpp
@@ -69,7 +69,7 @@ Policy_Tester::init (int argc,
while (arg_shifter.is_anything_left ())
{
- char *arg;
+ const char *arg = 0;
// IOR File Name Option.
if ((arg = arg_shifter.get_the_parameter ("-POAConfigFile")))
{
diff --git a/tests/Arg_Shifter_Test.cpp b/tests/Arg_Shifter_Test.cpp
index b4cebaad3e2..383e95b3edb 100644
--- a/tests/Arg_Shifter_Test.cpp
+++ b/tests/Arg_Shifter_Test.cpp
@@ -19,7 +19,7 @@
ACE_RCSID(tests, Arg_Shifter_Test, "$Id$")
int
-main (int, ACE_TCHAR *argv[])
+main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Arg_Shifter_Test"));
diff --git a/tests/Date_Time_Test.cpp b/tests/Date_Time_Test.cpp
index 7499f382c48..a9b5ad14195 100644
--- a/tests/Date_Time_Test.cpp
+++ b/tests/Date_Time_Test.cpp
@@ -19,7 +19,7 @@
ACE_RCSID(tests, Date_Time_Test, "$Id$")
int
-main (int, ACE_TCHAR *argv[])
+main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Date_Time_Test"));