summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2004-04-23 14:32:22 +0000
committerSteve Huston <shuston@riverace.com>2004-04-23 14:32:22 +0000
commitedd3e9b95b611cd0eb25ade256f5bfdf7e1cb894 (patch)
tree998a673f84c8aa433957d1717c4be1510b6a453b
parent8bc69625667b01ce4777bb4ed472dcbcbdf3cf49 (diff)
downloadATCD-edd3e9b95b611cd0eb25ade256f5bfdf7e1cb894.tar.gz
ChangeLogTag:Fri Apr 23 10:30:31 2004 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog4
-rw-r--r--tests/Recursive_Condition_Test.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d7af86edf2..eff1e5425ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Apr 23 10:30:31 2004 Steve Huston <shuston@riverace.com>
+
+ * tests/Recursive_Condition_Test.cpp: Missed a variable change.
+
Fri Apr 23 07:35:41 2004 Steve Huston <shuston@riverace.com>
* ace/OS_NS_Thread.inl (mutex_init): Forgot some changes of type to
diff --git a/tests/Recursive_Condition_Test.cpp b/tests/Recursive_Condition_Test.cpp
index 7b7f9853e04..a3e82d52aea 100644
--- a/tests/Recursive_Condition_Test.cpp
+++ b/tests/Recursive_Condition_Test.cpp
@@ -234,7 +234,7 @@ test_4 (void)
if (!(nesting_level == -1 && errno == ENOTSUP) && nesting_level != 0)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT("(%t) nesting level %d; should be 0\n"),
- nesting),
+ nesting_level),
1);
return 0;