summaryrefslogtreecommitdiff
path: root/ACE/performance-tests/Misc
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-01-31 20:19:43 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-01-31 20:19:43 +0000
commit2b66f0c594440fa37cffc0c71f7996b337b5caa8 (patch)
tree22868c5864940b700bfc1b988dca19851ce89798 /ACE/performance-tests/Misc
parent1c7fe722a5129145073cb4d6ef46cdf046235512 (diff)
downloadATCD-2b66f0c594440fa37cffc0c71f7996b337b5caa8.tar.gz
Tue Jan 31 20:19:16 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Web_Crawler/Iterators.cpp: * performance-tests/Misc/context_switch_time.cpp: Fixed gcc 4.7 warning
Diffstat (limited to 'ACE/performance-tests/Misc')
-rw-r--r--ACE/performance-tests/Misc/context_switch_time.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/performance-tests/Misc/context_switch_time.cpp b/ACE/performance-tests/Misc/context_switch_time.cpp
index 293f687d434..175ac6b9637 100644
--- a/ACE/performance-tests/Misc/context_switch_time.cpp
+++ b/ACE/performance-tests/Misc/context_switch_time.cpp
@@ -1142,7 +1142,7 @@ get_options (int argc, ACE_TCHAR *argv[])
int
ACE_TMAIN (int argc, ACE_TCHAR *argv [])
{
- ACE_LOG_MSG->open (argv[0] > 0 ? argv[0] : ACE_TEXT("context_switch_time"));
+ ACE_LOG_MSG->open (argv[0] != 0 ? argv[0] : ACE_TEXT("context_switch_time"));
if (get_options (argc, argv))
ACE_OS::exit (-1);