summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-28 00:26:18 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-28 00:26:18 +0000
commit66970fa8e5d66cae0301eb2beb7fce887be9bff2 (patch)
tree615a10df8e775be745b9dab830b99f3af94bb811
parent7a0b76204e4e9c05bf279812bcd1d98b28f33d4d (diff)
downloadATCD-66970fa8e5d66cae0301eb2beb7fce887be9bff2.tar.gz
ChangeLogTag: Sun Jul 27 19:23:22 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp3
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 5cb95e65fbe..a22896b9351 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Sun Jul 27 19:23:22 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * RTScheduling/Scheduling_Interceptor/test_server.cpp:
+
+ Changed filename string literal assignment at top of file
+ to const char *.
+
Sun Jul 27 19:11:41 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_valuetype/arglist.cpp:
diff --git a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
index 53512358075..191533fff75 100644
--- a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
+++ b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
@@ -1,10 +1,11 @@
//$Id$
+
#include "../Scheduler.h"
#include "tao/RTScheduling/RTScheduler_Manager.h"
#include "testS.h"
#include "ace/Get_Opt.h"
-char* filename = "test.ior";
+const char* filename = "test.ior";
class test_impl :public POA_test
{