]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/BASE/test/dtOperators.cxx
- AliHLTEsdManager: minor bufix -> correct error handling
[u/mrichter/AliRoot.git] / HLT / BASE / test / dtOperators.cxx
index 954b371beaf3e2a8d3eae36e01ca71338084e7a8..4a5d73662c7924cb13734d2636e6955e63807b75 100644 (file)
@@ -35,7 +35,7 @@ typedef struct test_t {
   bool result;
 } test_t;
 
-int main(int argc, const char** argv)
+int main(int /*argc*/, const char** /*argv*/)
 {
   AliHLTComponentDataType testdt1={
     sizeof(AliHLTComponentDataType),
@@ -112,7 +112,7 @@ int main(int argc, const char** argv)
 
   int result=0;
   cout << "checking data type operators" << endl;
-  for (int i=0; i<(sizeof(tests)/sizeof(test_t)); i++) {
+  for (unsigned int i=0; i<(sizeof(tests)/sizeof(test_t)); i++) {
     //if (!tests[i].type) continue;
     const char* op=(tests[i].type)?" == ":" != ";
     cout << "checking: " << AliHLTComponent::DataType2Text(tests[i].dt1).c_str() << op << AliHLTComponent::DataType2Text(tests[i].dt2).c_str() << " -> ";