summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-11 22:06:44 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-11 22:06:44 +0000
commit33570ef7d02dd8af83f85cff32acc5904a944724 (patch)
tree927d7a80286ab75cb3375a431f1fa6a7c1e5fa70
parentb330d300c00d371b6faf2d06bc9f0552efa90c28 (diff)
downloadATCD-33570ef7d02dd8af83f85cff32acc5904a944724.tar.gz
Fixed the warning on Linux (config-linux.h)
-rw-r--r--examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp b/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp
index 7a8f070e887..7a98c2f1bd6 100644
--- a/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp
+++ b/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp
@@ -473,7 +473,7 @@ run_client (void)
else
ACE_Thread_Manager::instance ()->wait ();
#else
- (*OPTIONS::instance ()->thr_func) ();
+ *(OPTIONS::instance ()->thr_func) ();
#endif /* ACE_HAS_THREADS */
return 0;
}