summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/Param_Test/server.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 842d1e12049..d07a864c76a 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Wed Apr 9 23:23:17 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tests/Param_Test/server.cpp:
+
+ Added 'const' to a static char& definition which has a string
+ literal on the rhs. SunOS FORTE complained about it.
+
Wed Apr 9 23:09:09 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* orbsvcs/orbsvcs/IFRService/tmplinst.cp:
diff --git a/TAO/tests/Param_Test/server.cpp b/TAO/tests/Param_Test/server.cpp
index 1b640bc78b3..f143b1f8848 100644
--- a/TAO/tests/Param_Test/server.cpp
+++ b/TAO/tests/Param_Test/server.cpp
@@ -24,7 +24,7 @@ ACE_RCSID (Param_Test,
// Parses the command line arguments and returns an error status.
static FILE *ior_output_file = 0;
-static char *ior_output_filename = "test.ior";
+static const char *ior_output_filename = "test.ior";
static int
parse_args (int argc, char *argv[])