From 7b5a429be6bcb7376736b32d9ef8b632abd3d45e Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Tue, 27 Aug 2002 17:38:26 +0000 Subject: ChangeLogTag:Tue Aug 27 13:28:17 2002 Steve Huston --- ace/OS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ace/OS.cpp') diff --git a/ace/OS.cpp b/ace/OS.cpp index 1a18aca1e8e..369fa166aa4 100644 --- a/ace/OS.cpp +++ b/ace/OS.cpp @@ -3787,7 +3787,7 @@ ACE_OS::argv_to_string (ACE_TCHAR **argv, int ACE_OS::string_to_argv (ACE_TCHAR *buf, - size_t &argc, + int &argc, ACE_TCHAR **&argv, int substitute_env_args) { @@ -3855,7 +3855,7 @@ ACE_OS::string_to_argv (ACE_TCHAR *buf, ACE_TCHAR *ptr = buf; - for (size_t i = 0; i < argc; i++) + for (int i = 0; i < argc; i++) { // Skip whitespace.. while (ACE_OS::ace_isspace (*ptr)) -- cgit v1.2.1