From f8185d82fd57fac43237be97c8aabec08f2f9296 Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Sat, 22 Nov 1997 22:52:07 +0000 Subject: Moved expression outside ACE_ASSERT. --- tests/Thread_Pool_Test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/Thread_Pool_Test.cpp') diff --git a/tests/Thread_Pool_Test.cpp b/tests/Thread_Pool_Test.cpp index 1e95919673e..6c70da76718 100644 --- a/tests/Thread_Pool_Test.cpp +++ b/tests/Thread_Pool_Test.cpp @@ -98,7 +98,8 @@ Thread_Pool::svc (void) { ACE_Message_Block *mb; - ACE_ASSERT (this->getq (mb) != -1); + int result = this->getq (mb); + ACE_ASSERT (result != -1); int length = mb->length (); -- cgit v1.2.1