From a3628ee2ddfc4f315a729d141554a70a41178247 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Tue, 2 Jan 2007 09:44:57 +0000 Subject: Tue Jan 2 09:44:05 UTC 2006 Johnny Willemsen --- ACE/ChangeLog | 5 +++++ ACE/tests/ARGV_Test.cpp | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ACE/ChangeLog b/ACE/ChangeLog index d7e111d184d..1146b6a0bb3 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,8 @@ +Tue Jan 2 09:44:05 UTC 2006 Johnny Willemsen + + * tests/ARGV_Test.cpp: + Fixed compile errors in unicode build + Mon Jan 1 21:56:50 UTC 2007 James H. Hill * docs/ace_guidelines.vsmacros: diff --git a/ACE/tests/ARGV_Test.cpp b/ACE/tests/ARGV_Test.cpp index 66bf1a97599..0e7e18f52d8 100644 --- a/ACE/tests/ARGV_Test.cpp +++ b/ACE/tests/ARGV_Test.cpp @@ -36,7 +36,7 @@ consume_arg (int argc, ACE_TCHAR *argv[]) } static int -test_simple_argv (char *argv[]) +test_simple_argv (ACE_TCHAR *argv[]) { // From command line. ACE_ARGV cl (argv); @@ -182,9 +182,9 @@ test_argv_buf (void) static int test_argv_quotes (void) { - const char *argv[] = { "first without quotes", - "'second in single quotes'", - "\"third in double quotes\"", + const ACE_TCHAR *argv[] = { ACE_TEXT ("first without quotes"), + ACE_TEXT ("'second in single quotes'"), + ACE_TEXT ("\"third in double quotes\""), 0 }; int argc = 3; -- cgit v1.2.1