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 | 045f0d5708baba7980d3bc3a4e0ce920c97ef3cb (patch) | |
tree | ca6aae26ca7e2d1f777ee25e8e8be32eaccb9de6 /docs/tutorials | |
parent | cad2d08e2aa7f234dffa3dc8504472958bc4f262 (diff) | |
download | ATCD-045f0d5708baba7980d3bc3a4e0ce920c97ef3cb.tar.gz |
open(), fix ACE_UNUSED_ARG(arg), not (_arg).
Diffstat (limited to 'docs/tutorials')
-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); } |