comparison host/tools/ecostest/common/eCosTest.cpp @ 3359:b340d0ab5dd3

* configtool/standalone/wxwin/configtool.cpp, configtool/standalone/wxwin/configtooldoc.cpp, configtool/standalone/wxwin/configtree.cpp, configtool/standalone/wxwin/configtree.h, configtool/standalone/wxwin/filename.cpp, configtool/standalone/wxwin/packagesdlg.cpp, configtool/standalone/wxwin/propertywin.cpp, configtool/standalone/wxwin/runtestsdlg.cpp, configtool/standalone/wxwin/templatesdlg.cpp, ecostest/common/eCosTest.cpp: Silence unused variable warnings with recent GCC. [ Bugzilla 1001950 ]
author jld
date Thu, 13 Mar 2014 15:22:25 +0000
parents f9b94a5b13ac
children
comparison
equal deleted inserted replaced
3358:f9b94a5b13ac 3359:b340d0ab5dd3
1248 #ifdef _WIN32 1248 #ifdef _WIN32
1249 BOOL WINAPI HandlerRoutine( 1249 BOOL WINAPI HandlerRoutine(
1250 DWORD dwCtrlType // control signal type 1250 DWORD dwCtrlType // control signal type
1251 ) 1251 )
1252 { 1252 {
1253 dwCtrlType; // eliminate compiler warning 1253 CYG_UNUSED_PARAM(DWORD, dwCtrlType);
1254 return TRUE; 1254 return TRUE;
1255 } 1255 }
1256 #endif 1256 #endif
1257 1257
1258 1258