summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/orbsvcs/tests/Bug_2248_Regression/client.cpp2
-rw-r--r--TAO/orbsvcs/tests/Bug_2248_Regression/client.h2
3 files changed, 11 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index c37eb179cb8..59ca979863e 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Fri Jun 27 09:40:00 UTC 2008 Simon Massey <sma at prismtech dot com>
+
+ * orbsvcs/tests/Bug_2248_Regression/client.h:
+ * orbsvcs/tests/Bug_2248_Regression/client.cpp:
+
+ This mornings round of fixes/typos etc. to my changes yesterday,
+ missed the header change corresponding to the cpp. Tidied this up
+ as well.
+
Fri Jun 27 08:00:00 UTC 2008 Simon Massey <sma at prismtech dot com>
* orbsvcs/tests/Notify/Timeout/run_test.pl:
diff --git a/TAO/orbsvcs/tests/Bug_2248_Regression/client.cpp b/TAO/orbsvcs/tests/Bug_2248_Regression/client.cpp
index e76ff921939..2ee4ea5a357 100644
--- a/TAO/orbsvcs/tests/Bug_2248_Regression/client.cpp
+++ b/TAO/orbsvcs/tests/Bug_2248_Regression/client.cpp
@@ -112,7 +112,7 @@ Manager::Manager (void)
void
Manager::init (int& argc,
- ACE_TCHAR **argv)
+ ACE_TCHAR *argv[])
{
this->orb_ = CORBA::ORB_init (argc, argv);
diff --git a/TAO/orbsvcs/tests/Bug_2248_Regression/client.h b/TAO/orbsvcs/tests/Bug_2248_Regression/client.h
index bb2ac688cf9..2ff8f53b97b 100644
--- a/TAO/orbsvcs/tests/Bug_2248_Regression/client.h
+++ b/TAO/orbsvcs/tests/Bug_2248_Regression/client.h
@@ -19,7 +19,7 @@ public:
// Ctor
void init (int& argc,
- char**& argv);
+ ACE_TCHAR *argv[]);
// Initialize the ORB, POA etc.