summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 04:26:12 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 04:26:12 +0000
commit25d2c887ae17bda148c7804bccaea653a6cac98f (patch)
tree97dd1564e271840bc1ea71143c677ec42fa17091
parenteb06f139e0edbc28478cdd4d651f3aaebbc5a4b8 (diff)
downloadATCD-25d2c887ae17bda148c7804bccaea653a6cac98f.tar.gz
ChangeLogTag: Wed Apr 9 23:23:17 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-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[])