summaryrefslogtreecommitdiff
path: root/ACE/tests/Bug_3943_Regression_Test.cpp
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
commit53c3a4b682e6b521bc7c66688e1f30534be7257f (patch)
treea560220ea20047df1f60b95216e6ecbc91452879 /ACE/tests/Bug_3943_Regression_Test.cpp
parentdab2fb7072da3b53f343303d90b19c4d250f414b (diff)
downloadATCD-53c3a4b682e6b521bc7c66688e1f30534be7257f.tar.gz
Fri Apr 15 08:30:40 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3943_Regression_Test.cpp: Fixed mingw warning
Diffstat (limited to 'ACE/tests/Bug_3943_Regression_Test.cpp')
-rw-r--r--ACE/tests/Bug_3943_Regression_Test.cpp4
1 files changed, 2 insertions, 2 deletions
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 ")