summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Concurrency
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-02-08 10:37:34 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-02-08 10:37:34 +0000
commit808646bb3aebf2c84c860ec8b7db3a0ebe58b84b (patch)
treedc49937658b90c7f38f56a4e7901cf80dbc21401 /TAO/orbsvcs/tests/Concurrency
parent4b713d71c62e9ff1f8ab5d52c78abec8fab09a8e (diff)
downloadATCD-808646bb3aebf2c84c860ec8b7db3a0ebe58b84b.tar.gz
Mon Feb 8 10:35:30 UTC 2010 Martin Corino <mcorino@remedy.nl>
* orbsvcs/orbsvcs/Trader/Constraint_l.cpp: * orbsvcs/tests/Concurrency/lex.CC_command.cpp: * performance-tests/POA/Demux/demux_test_server.cpp: * tests/Exposed_Policies/RT_Properties.cpp: Fixed new GCC 4.4.x warning about ignoring return values of function marked by the new warn_unused_result attribute.
Diffstat (limited to 'TAO/orbsvcs/tests/Concurrency')
-rw-r--r--TAO/orbsvcs/tests/Concurrency/lex.CC_command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/tests/Concurrency/lex.CC_command.cpp b/TAO/orbsvcs/tests/Concurrency/lex.CC_command.cpp
index e50f7fa9654..b70ca157c86 100644
--- a/TAO/orbsvcs/tests/Concurrency/lex.CC_command.cpp
+++ b/TAO/orbsvcs/tests/Concurrency/lex.CC_command.cpp
@@ -546,7 +546,7 @@ ACE_CC_YY_MALLOC_DECL
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
-#define ACE_CC_ECHO (void) fwrite( ace_cc_yytext, ace_cc_yyleng, 1, ace_cc_yyout )
+#define ACE_CC_ECHO { size_t __dum_ret = fwrite( ace_cc_yytext, ace_cc_yyleng, 1, ace_cc_yyout ); (void) __dum_ret; }
#endif
//FUZZ: enable check_for_lack_ACE_OS