diff options
author | Steve Huston <shuston@riverace.com> | 1999-03-18 22:18:15 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-03-18 22:18:15 +0000 |
commit | 943c6ebd98797e7d0dac6ac641b099d119a4e823 (patch) | |
tree | ca6aae26ca7e2d1f777ee25e8e8be32eaccb9de6 | |
parent | e72a1dcc6b6cfdd9a19a1e35831e30699c3c4e10 (diff) | |
download | ATCD-943c6ebd98797e7d0dac6ac641b099d119a4e823.tar.gz |
open(), fix ACE_UNUSED_ARG(arg), not (_arg).
-rw-r--r-- | docs/tutorials/018/Test_T.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/018/Test_T.cpp b/docs/tutorials/018/Test_T.cpp index 178c912082a..73d5549d3ca 100644 --- a/docs/tutorials/018/Test_T.cpp +++ b/docs/tutorials/018/Test_T.cpp @@ -104,7 +104,7 @@ Test_T<MUTEX>::send (ACE_Message_Block *message) template <class MUTEX> int Test_T<MUTEX>::open (void *arg) { - ACE_UNUSED_ARG(_arg); + ACE_UNUSED_ARG(arg); return this->activate (THR_NEW_LWP, TEST_THREAD_COUNT); } |