summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-04-15 08:31:12 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-04-15 08:31:12 +0000
commit0fa08c2fcfc0943fa59cf4fc44725b1ef4e6665d (patch)
treea560220ea20047df1f60b95216e6ecbc91452879
parent580094cd45e2fc0ffab1478145f8f0e031604ebe (diff)
downloadATCD-0fa08c2fcfc0943fa59cf4fc44725b1ef4e6665d.tar.gz
Fri Apr 15 08:30:40 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3943_Regression_Test.cpp: Fixed mingw warning
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/tests/Bug_3943_Regression_Test.cpp4
2 files changed, 7 insertions, 2 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 5cc2076436d..ff5a05e0ac4 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Fri Apr 15 08:30:40 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Bug_3943_Regression_Test.cpp:
+ Fixed mingw warning
+
Fri Apr 15 07:51:49 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/global.features:
diff --git a/ACE/tests/Bug_3943_Regression_Test.cpp b/ACE/tests/Bug_3943_Regression_Test.cpp
index a5646d1e1dd..d914cca036f 100644
--- a/ACE/tests/Bug_3943_Regression_Test.cpp
+++ b/ACE/tests/Bug_3943_Regression_Test.cpp
@@ -368,11 +368,11 @@ Svc_Handler::send_data (void)
#if defined (ACE_WIN32)
win32_test = true;
- // THis test only applies to win32 platforms, on systems with
+ // This test only applies to win32 platforms, on systems with
// sane sendv impls, this is not a problem.
if (thresholdActualSend != static_cast<ssize_t>(tryThreshold)/2 + 1)
{
- if (tryThreshold == MAX)
+ if (static_cast<ssize_t>(tryThreshold) == MAX)
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("(%P|%t) was not able to identify a point ")
ACE_TEXT ("where ACE_OS::sendv does not send a ")