summaryrefslogtreecommitdiff
path: root/ACE/examples/Service_Configurator/IPC-tests
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2006-10-24 23:06:58 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2006-10-24 23:06:58 +0000
commit3a6ac626657d7edc734ba9a4628c48dd2c1d9718 (patch)
tree584c80d1e9d7ac6332634d7a89c245e275c7dedb /ACE/examples/Service_Configurator/IPC-tests
parent8b32232ec0012707a0983647ad3bc25aa884d6bf (diff)
downloadATCD-3a6ac626657d7edc734ba9a4628c48dd2c1d9718.tar.gz
ChangeLogTag:Tue Oct 24 23:59:10 UTC 2006 Ossama othman <ossama_othman at symantec dot com>
Diffstat (limited to 'ACE/examples/Service_Configurator/IPC-tests')
-rw-r--r--ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.inl b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.inl
index 346a22e773c..a5f1421b8b9 100644
--- a/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.inl
+++ b/ACE/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.inl
@@ -31,7 +31,7 @@ Handle_Timeout::init (int argc, ACE_TCHAR *argv[])
ACE_Time_Value delta (10);
ACE_Time_Value interval (1);
ACE_Get_Opt get_opt (argc, argv, ACE_TEXT("a:d:i:"), 0);
- int arg = 0;
+ intptr_t arg = 0;
for (int c; (c = get_opt ()) != -1; )
switch (c)
@@ -51,8 +51,8 @@ Handle_Timeout::init (int argc, ACE_TCHAR *argv[])
if (ACE_Reactor::instance ()->schedule_timer (this,
reinterpret_cast<void *> (arg),
- delta,
- interval) == -1)
+ delta,
+ interval) == -1)
return -1;
else
return 0;