summaryrefslogtreecommitdiff
path: root/TAO/tests/Timeout
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-09-26 06:35:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-09-26 06:35:51 +0000
commit59f9c86c595ec53155a1f50e6cebf7265988e060 (patch)
treecd3b761a89263a1d6a66b55f96f2e388e5531e82 /TAO/tests/Timeout
parentbe271612ad48635a610b350a6c482679d456cca0 (diff)
downloadATCD-59f9c86c595ec53155a1f50e6cebf7265988e060.tar.gz
fixed conversion warnings
Diffstat (limited to 'TAO/tests/Timeout')
-rw-r--r--TAO/tests/Timeout/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tests/Timeout/client.cpp b/TAO/tests/Timeout/client.cpp
index 0a0748e1cd5..9a7d1fe603c 100644
--- a/TAO/tests/Timeout/client.cpp
+++ b/TAO/tests/Timeout/client.cpp
@@ -49,7 +49,7 @@ parse_args (int argc, char *argv[])
}
enum TO_TYPE {none = 0, orb1 = 1, thread1 = 2, object1 = 3};
-char *to_type_names[4] ={"none", "orb", "thread", "object"};
+const char *to_type_names[4] ={"none", "orb", "thread", "object"};
static int timeout_count[4] = {0, 0, 0, 0};
static int in_time_count[4] = {0, 0, 0, 0};