summaryrefslogtreecommitdiff
path: root/ACE/examples/C++NPv1
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2006-10-28 00:32:58 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2006-10-28 00:32:58 +0000
commit6e5adae606e5e2d4b1717074c14623a92ce5df14 (patch)
treebeb19b2b58ca89c22e89cdbbebcd0f74c843b591 /ACE/examples/C++NPv1
parent8772f91802c646dd6fdd3065156c48a908a274f4 (diff)
downloadATCD-6e5adae606e5e2d4b1717074c14623a92ce5df14.tar.gz
ChangeLogTag:Fri Oct 28 03:23:18 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
Diffstat (limited to 'ACE/examples/C++NPv1')
-rw-r--r--ACE/examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp b/ACE/examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp
index 54d936962aa..ad6fdc684af 100644
--- a/ACE/examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp
+++ b/ACE/examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp
@@ -146,7 +146,7 @@ Process_Per_Connection_Logging_Server::run_master (int argc, char *argv[])
int
Process_Per_Connection_Logging_Server::run_worker (int, char *argv[])
{
- int client_handle_i = atoi (argv[2]);
+ intptr_t client_handle_i = atoi (argv[2]);
// Some compilers don't like reinterpret_casting an int to an int, so
// only do reinterpret_cast on Windows.
#if defined (ACE_WIN32)