summaryrefslogtreecommitdiff
path: root/tests/Signal_Test.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
commit40fdc8a404e75ab03b68cc62e9987cf208fd8c30 (patch)
tree37d9c4d3abe4aefd8a34ed797883dd2cd4862ca7 /tests/Signal_Test.cpp
parentc254b281f1b9a4ca19dd0c3ee73a0654a7718909 (diff)
downloadATCD-40fdc8a404e75ab03b68cc62e9987cf208fd8c30.tar.gz
This commit was manufactured by cvs2svn to create branchtypecode-overhaul
'typecode-overhaul'.
Diffstat (limited to 'tests/Signal_Test.cpp')
-rw-r--r--tests/Signal_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Signal_Test.cpp b/tests/Signal_Test.cpp
index c13467e6773..5d8ddda4b1f 100644
--- a/tests/Signal_Test.cpp
+++ b/tests/Signal_Test.cpp
@@ -244,7 +244,7 @@ worker_parent (void *arg)
// Store the parent's process id so we can pass it to the child
// portably. Also, pass the test number, as well.
ACE_OS::sprintf (pid_str,
- ACE_TEXT ("-p %ld -t %d"),
+ "-p %ld -t %d",
ACE_static_cast (long, parent_pid),
test_number);
@@ -370,9 +370,9 @@ run_test (ACE_THR_FUNC worker,
// Parse the command-line arguments and set options.
static void
-parse_args (int argc, ACE_TCHAR *argv[])
+parse_args (int argc, char *argv[])
{
- ACE_Get_Opt get_opt (argc, argv, ACE_TEXT ("i:chp:t:"));
+ ACE_Get_Opt get_opt (argc, argv, "i:chp:t:");
int c;