From 22d414d3b4c7ee55a74c62863fbc7e7fc10637da Mon Sep 17 00:00:00 2001 From: Jonathan Guinet <jonathan.guinet@c-s.fr> Date: Wed, 26 Oct 2011 16:42:43 +0200 Subject: [PATCH] WRG: remove comparison warning. --- Testing/Applications/otbWrapperApplicationDocTests.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Testing/Applications/otbWrapperApplicationDocTests.cxx b/Testing/Applications/otbWrapperApplicationDocTests.cxx index 0cf4433835..d77b5b9fd3 100644 --- a/Testing/Applications/otbWrapperApplicationDocTests.cxx +++ b/Testing/Applications/otbWrapperApplicationDocTests.cxx @@ -30,7 +30,7 @@ int otbWrapperApplicationDocTest(int argc, char* argv[]) return EXIT_FAILURE; } // Load path - for( unsigned int i=2; i<argc; i++) + for( int i=2; i<argc; i++) { otb::Wrapper::ApplicationRegistry::AddApplicationPath(argv[i]); } -- GitLab