diff --git a/Testing/Code/BasicFilters/otbFrostFilter.cxx b/Testing/Code/BasicFilters/otbFrostFilter.cxx
index 4150f7ed8d99cd4c4ad337b8f540f5a500edcc7e..9e2fef0780dd37c1c8464de3e9908de632ca6d58 100644
--- a/Testing/Code/BasicFilters/otbFrostFilter.cxx
+++ b/Testing/Code/BasicFilters/otbFrostFilter.cxx
@@ -29,7 +29,7 @@
 #include "itkMeanImageFilter.h"
 
 
-int otbFrostFilter( int argc, char ** argv )
+int otbFrostFilter( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/BasicFilters/otbFrostFilterNew.cxx b/Testing/Code/BasicFilters/otbFrostFilterNew.cxx
index fca26053a14e6f2280d65b6fcbaad8faa67592e2..b1f33386059d268132ce44cce221456c8a8109b3 100644
--- a/Testing/Code/BasicFilters/otbFrostFilterNew.cxx
+++ b/Testing/Code/BasicFilters/otbFrostFilterNew.cxx
@@ -29,7 +29,7 @@
 #include "itkMeanImageFilter.h"
 
 
-int otbFrostFilterNew( int argc, char ** argv )
+int otbFrostFilterNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/BasicFilters/otbFrostFilterTest.cxx b/Testing/Code/BasicFilters/otbFrostFilterTest.cxx
index bde1bef858a05229bd0d2abaa73a1dd1cf2161af..39c8eb10eb648790bccde0476b0d3a9e2be77f54 100644
--- a/Testing/Code/BasicFilters/otbFrostFilterTest.cxx
+++ b/Testing/Code/BasicFilters/otbFrostFilterTest.cxx
@@ -29,7 +29,7 @@
 #include "itkMeanImageFilter.h"
 
 
-int otbFrostFilterTest( int argc, char ** argv )
+int otbFrostFilterTest( int argc, char * argv[] )
 {
 
   typedef itk::Image<float,2> FloatImage2DType;
diff --git a/Testing/Code/BasicFilters/otbImageToPointSetFilterTest.cxx b/Testing/Code/BasicFilters/otbImageToPointSetFilterTest.cxx
index 2e9d523f5cc44e941f9e7ba46b9bf19c1447abb5..7456256617b9db0b7c169ef458e372c6606c85e2 100644
--- a/Testing/Code/BasicFilters/otbImageToPointSetFilterTest.cxx
+++ b/Testing/Code/BasicFilters/otbImageToPointSetFilterTest.cxx
@@ -24,7 +24,7 @@
 #include "itkImage.h"
 #include "itkPointSet.h"
 
-int otbImageToPointSetFilterTest(int , char *[] )
+int otbImageToPointSetFilterTest(int argc, char *argv[] )
 {
 
 
diff --git a/Testing/Code/BasicFilters/otbLeeFilter.cxx b/Testing/Code/BasicFilters/otbLeeFilter.cxx
index 26e8a4b2124c111b253dbf62538d99e70a58e26d..0b6740fc16cde4cae9900d66c3444222a53c97d8 100755
--- a/Testing/Code/BasicFilters/otbLeeFilter.cxx
+++ b/Testing/Code/BasicFilters/otbLeeFilter.cxx
@@ -28,7 +28,7 @@
 #include "otbLeeImageFilter.h"
 
 
-int otbLeeFilter( int argc, char ** argv )
+int otbLeeFilter( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbExtractROI.cxx b/Testing/Code/Common/otbExtractROI.cxx
index 9af2a0b7d7c7d6abefd20444e3fbc8a87867ef79..33609993b0ab01fb84ed1403ec9023e40a9a7c4b 100755
--- a/Testing/Code/Common/otbExtractROI.cxx
+++ b/Testing/Code/Common/otbExtractROI.cxx
@@ -24,7 +24,7 @@
 
 #include "otbExtractROI.h"
 
-int otbExtractROI( int argc, char ** argv )
+int otbExtractROI( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbExtractROINew.cxx b/Testing/Code/Common/otbExtractROINew.cxx
index 214ac32612fa5a2d2e8261e57f972dcfa3ff1cb0..f17f6a6d59e349d8943b9d45cc168784fbc85f48 100644
--- a/Testing/Code/Common/otbExtractROINew.cxx
+++ b/Testing/Code/Common/otbExtractROINew.cxx
@@ -24,7 +24,7 @@
 
 #include "otbExtractROI.h"
 
-int otbExtractROINew( int argc, char ** argv )
+int otbExtractROINew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbExtractROI_RGB.cxx b/Testing/Code/Common/otbExtractROI_RGB.cxx
index 1d885bf9e9234e8031cb689bee1b03a1de727ccc..ce7657d6a080e74220e80160dc8240e16c5cedc5 100755
--- a/Testing/Code/Common/otbExtractROI_RGB.cxx
+++ b/Testing/Code/Common/otbExtractROI_RGB.cxx
@@ -26,7 +26,7 @@
 #include "itkRGBPixel.h"
 
 
-int otbExtractROI_RGB( int argc, char ** argv )
+int otbExtractROI_RGB( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbLineSpatialObjectList.cxx b/Testing/Code/Common/otbLineSpatialObjectList.cxx
index 75ad96201cf154240f1f3fea602084554928919c..6e20510827d6ba63826e979af1f0c19798d011d3 100755
--- a/Testing/Code/Common/otbLineSpatialObjectList.cxx
+++ b/Testing/Code/Common/otbLineSpatialObjectList.cxx
@@ -21,7 +21,7 @@
 #include "otbLineSpatialObjectList.h"
 #include <list>
 
-int otbLineSpatialObjectList( int argc, char ** argv )
+int otbLineSpatialObjectList( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbMultiChannelExtractROI.cxx b/Testing/Code/Common/otbMultiChannelExtractROI.cxx
index ee76a810def612e58b1c3076a982124a082cd8a7..8a6a5d76f3a370a53ee59b5fabe626012cb4654b 100755
--- a/Testing/Code/Common/otbMultiChannelExtractROI.cxx
+++ b/Testing/Code/Common/otbMultiChannelExtractROI.cxx
@@ -28,7 +28,7 @@
 
 
 template < typename  InputPixelType /*= unsigned char */, typename OutputPixelType /*= unsigned char*/ >
-int generic_otbMultiChannelExtractROI( int argc, char ** argv, const char * inputFilename,const char * outputFilename)
+int generic_otbMultiChannelExtractROI( int argc, char * argv[], const char * inputFilename,const char * outputFilename)
 {
   try 
     { 
@@ -129,7 +129,7 @@ int generic_otbMultiChannelExtractROI( int argc, char ** argv, const char * inpu
 }
 
 
-int otbMultiChannelExtractROI ( int argc, char ** argv )
+int otbMultiChannelExtractROI ( int argc, char * argv[] )
 {
         std::string linputPixelType;
         std::string loutputPixelType;
diff --git a/Testing/Code/Common/otbMultiChannelExtractROINew.cxx b/Testing/Code/Common/otbMultiChannelExtractROINew.cxx
index dfee2960bf1666be092bf8874dad20e3704d02d9..459cb3376efde757830f169ac2c81b3b3a945a6c 100644
--- a/Testing/Code/Common/otbMultiChannelExtractROINew.cxx
+++ b/Testing/Code/Common/otbMultiChannelExtractROINew.cxx
@@ -20,7 +20,7 @@
 #include "otbMultiChannelExtractROI.h"
 
 
-int otbMultiChannelExtractROINew ( int argc, char ** argv )
+int otbMultiChannelExtractROINew ( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbMultiToMonoChannelExtractROI.cxx b/Testing/Code/Common/otbMultiToMonoChannelExtractROI.cxx
index 4fd382b49055dbbafeab78c98118e0215ec024a0..c9d583cbe5da718f5077e38f5dac6e6f77987726 100755
--- a/Testing/Code/Common/otbMultiToMonoChannelExtractROI.cxx
+++ b/Testing/Code/Common/otbMultiToMonoChannelExtractROI.cxx
@@ -23,7 +23,7 @@
 #include "otbMultiToMonoChannelExtractROI.h"
 
 template < typename  InputPixelType, typename OutputPixelType  >
-int generic_otbMultiToMonoChannelExtractROI ( int argc, char ** argv, const char * inputFilename,const char * outputFilename)
+int generic_otbMultiToMonoChannelExtractROI ( int argc, char * argv[], const char * inputFilename,const char * outputFilename)
 {
   try 
     { 
@@ -84,7 +84,7 @@ int generic_otbMultiToMonoChannelExtractROI ( int argc, char ** argv, const char
   return EXIT_SUCCESS;
 }
 
-int otbMultiToMonoChannelExtractROI ( int argc, char ** argv )
+int otbMultiToMonoChannelExtractROI ( int argc, char * argv[] )
 {
         std::string linputPixelType;
         std::string loutputPixelType;
diff --git a/Testing/Code/Common/otbMultiToMonoChannelExtractROINew.cxx b/Testing/Code/Common/otbMultiToMonoChannelExtractROINew.cxx
index bfe7a092407c9e23941906f1bfb4b29bf6452784..5ee21577796b892d810406aebf8c4c11d15bfa8f 100644
--- a/Testing/Code/Common/otbMultiToMonoChannelExtractROINew.cxx
+++ b/Testing/Code/Common/otbMultiToMonoChannelExtractROINew.cxx
@@ -19,7 +19,7 @@
 #include "itkExceptionObject.h"
 #include "otbMultiToMonoChannelExtractROI.h"
 
-int otbMultiToMonoChannelExtractROINew ( int argc, char ** argv )
+int otbMultiToMonoChannelExtractROINew ( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbPointSetSourceTest.cxx b/Testing/Code/Common/otbPointSetSourceTest.cxx
index b39e4101780c57c5fb5abb7a2326630b1babe9ec..ccc4c4d97a0f2cbf9b7b6f79dc85153adb297806 100644
--- a/Testing/Code/Common/otbPointSetSourceTest.cxx
+++ b/Testing/Code/Common/otbPointSetSourceTest.cxx
@@ -25,7 +25,7 @@
 #include "itkExceptionObject.h"
 
 
-int otbPointSetSourceTest(int, char* [] ) 
+int otbPointSetSourceTest(int argc, char* argv[] ) 
 {
   // Declare the PointSet pixel type.
   // Those are the values associated 
diff --git a/Testing/Code/Common/otbTestCommandLineArgumentParser.cxx b/Testing/Code/Common/otbTestCommandLineArgumentParser.cxx
index 24474e8e2b993705b7bc95779d4ab74d5f63358f..dd47f0579835389d54ed3b4b6b0d0110b5f08781 100755
--- a/Testing/Code/Common/otbTestCommandLineArgumentParser.cxx
+++ b/Testing/Code/Common/otbTestCommandLineArgumentParser.cxx
@@ -21,7 +21,7 @@
 #include "itkExceptionObject.h"
 #include "otbCommandLineArgumentParser.h"
 
-int otbTestCommandLineArgumentParser( int argc, char ** argv )
+int otbTestCommandLineArgumentParser( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbTestCommandLineArgumentParserHelp.cxx b/Testing/Code/Common/otbTestCommandLineArgumentParserHelp.cxx
index a614ac17d67185757d2f2e9ca7b2881faff787bd..a2d88af07afa8d6d692292a21593fcebac270df9 100644
--- a/Testing/Code/Common/otbTestCommandLineArgumentParserHelp.cxx
+++ b/Testing/Code/Common/otbTestCommandLineArgumentParserHelp.cxx
@@ -22,7 +22,7 @@
 #include "otbCommandLineArgumentParser.h"
 
 // Test de sortie en erreur
-int otbTestCommandLineArgumentParserHelp( int argc, char ** argv )
+int otbTestCommandLineArgumentParserHelp( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx b/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx
index aa29132192281888613284f4082f74afc6e1bdbd..d32537ecafcc1384ebf0d9d5ab821b63598da4fc 100644
--- a/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx
+++ b/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx
@@ -21,7 +21,7 @@
 #include "itkExceptionObject.h"
 #include "otbCommandLineArgumentParser.h"
 
-int otbTestCommandLineArgumentParserList( int argc, char ** argv )
+int otbTestCommandLineArgumentParserList( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx b/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx
index 313e3e9ec0ed600c2236aee03417e0202fca32ee..7dc3732e6674412055c0672acbf1fb43568ea17a 100644
--- a/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx
+++ b/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx
@@ -21,7 +21,7 @@
 #include "itkExceptionObject.h"
 #include "otbCommandLineArgumentParser.h"
 
-int otbTestCommandLineArgumentParserWithError( int argc, char ** argv )
+int otbTestCommandLineArgumentParserWithError( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Common/otbTestExtractROI.cxx b/Testing/Code/Common/otbTestExtractROI.cxx
index e8b884a09bb2951dbde7096bdde3ed4b53caf5cc..ea8c47b49f8f20fc0c4268ae3e636e0404e00ff7 100755
--- a/Testing/Code/Common/otbTestExtractROI.cxx
+++ b/Testing/Code/Common/otbTestExtractROI.cxx
@@ -23,7 +23,7 @@
 
 #include "itkImage.h"
 
-int main ( int argc, char ** argv )
+int main ( int argc, char * argv[] )
 {
   try
     {
diff --git a/Testing/Code/FeatureExtraction/otbAlignImageToPath.cxx b/Testing/Code/FeatureExtraction/otbAlignImageToPath.cxx
index ba5a248d95bc46557169fac7d7005ee5a12a032c..650054f23b3e2cc847e6353075f5fa17caa798c6 100644
--- a/Testing/Code/FeatureExtraction/otbAlignImageToPath.cxx
+++ b/Testing/Code/FeatureExtraction/otbAlignImageToPath.cxx
@@ -39,7 +39,7 @@
 
 #include <stdio.h>
 
-int otbAlignImageToPath( int argc, char ** argv )
+int otbAlignImageToPath( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetector.cxx b/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetector.cxx
index 02f0d81f498de54c50235039c7e6a2aeaa8096ac..beeddfd59ad563b2d721c22b1d5b8e86ea5eee8e 100755
--- a/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetector.cxx
+++ b/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetector.cxx
@@ -30,7 +30,7 @@
 #include "otbImageFileWriter.h"
 #include "otbAssymmetricFusionOfLineDetectorImageFilter.h"
 
-int otbAssymmetricFusionOfLineDetector( int argc, char ** argv )
+int otbAssymmetricFusionOfLineDetector( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetectorNew.cxx b/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetectorNew.cxx
index f0f89465b48bc3ed5387f110fd06376447e72d18..dbdaf202e78aca53b85638c85ed3eb8575016c25 100755
--- a/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetectorNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbAssymmetricFusionOfLineDetectorNew.cxx
@@ -33,7 +33,7 @@
 
 #include "otbAssymmetricFusionOfLineDetectorImageFilter.h"
 
-int otbAssymmetricFusionOfLineDetectorNew( int argc, char ** argv )
+int otbAssymmetricFusionOfLineDetectorNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbComplexMomentImage.cxx b/Testing/Code/FeatureExtraction/otbComplexMomentImage.cxx
index 67852d0a1f0dcdba1748e820e3b6481a70c2f593..111db1b2e920c036a18091be2375abec20e89538 100644
--- a/Testing/Code/FeatureExtraction/otbComplexMomentImage.cxx
+++ b/Testing/Code/FeatureExtraction/otbComplexMomentImage.cxx
@@ -26,7 +26,7 @@
 #include "otbImageFileReader.h"
 #include "otbComplexMomentImageFunction.h"
 
-int otbComplexMomentImage( int argc, char ** argv )
+int otbComplexMomentImage( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbComplexMomentPath.cxx b/Testing/Code/FeatureExtraction/otbComplexMomentPath.cxx
index 136ee0dc26fca8d56dea661f112b059ca6c58e4f..0102b7c2af6771a363dce8abecc463266522b5c4 100644
--- a/Testing/Code/FeatureExtraction/otbComplexMomentPath.cxx
+++ b/Testing/Code/FeatureExtraction/otbComplexMomentPath.cxx
@@ -25,7 +25,7 @@
 #include "itkExceptionObject.h"
 #include "itkPolyLineParametricPath.h"
 
-int otbComplexMomentPath( int argc, char ** argv )
+int otbComplexMomentPath( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbComplexMomentPathFloat.cxx b/Testing/Code/FeatureExtraction/otbComplexMomentPathFloat.cxx
index 0ea51d7f46192df8338ec4e2cb30d87d970d3937..33cf633c0adbd5442b591df5b31791ba60de98af 100644
--- a/Testing/Code/FeatureExtraction/otbComplexMomentPathFloat.cxx
+++ b/Testing/Code/FeatureExtraction/otbComplexMomentPathFloat.cxx
@@ -25,7 +25,7 @@
 #include "itkExceptionObject.h"
 #include "itkPolyLineParametricPath.h"
 
-int otbComplexMomentPathFloat( int argc, char ** argv )
+int otbComplexMomentPathFloat( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbComplexMomentPathNew.cxx b/Testing/Code/FeatureExtraction/otbComplexMomentPathNew.cxx
index b0acd6cf8274843d579068360af10e91f4b59012..d410fb1a89413e4c58321d7601f578a3a972e871 100644
--- a/Testing/Code/FeatureExtraction/otbComplexMomentPathNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbComplexMomentPathNew.cxx
@@ -24,7 +24,7 @@
 #include "otbComplexMomentPathFunction.h"
 #include "itkPolyLineParametricPath.h"
 
-int otbComplexMomentPathNew( int argc, char ** argv )
+int otbComplexMomentPathNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbDrawPath.cxx b/Testing/Code/FeatureExtraction/otbDrawPath.cxx
index 0e44fbebb139ad2a971c777f60ecb0552bfd6994..80b4d9b5935da826a7c9f8af7c934a66050d8c49 100644
--- a/Testing/Code/FeatureExtraction/otbDrawPath.cxx
+++ b/Testing/Code/FeatureExtraction/otbDrawPath.cxx
@@ -30,7 +30,7 @@
 #include "otbImageFileWriter.h"
 
 
-int otbDrawPathDessinCarre( int argc, char ** argv )
+int otbDrawPathDessinCarre( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbDrawPathAlign.cxx b/Testing/Code/FeatureExtraction/otbDrawPathAlign.cxx
index f7d3aa1b6257b79529f94dc5feed00bb1038520e..dc1937fc9df3d32be90aa25ff74d7e8283d4761d 100644
--- a/Testing/Code/FeatureExtraction/otbDrawPathAlign.cxx
+++ b/Testing/Code/FeatureExtraction/otbDrawPathAlign.cxx
@@ -32,7 +32,7 @@
 #include "otbImageFileWriter.h"
 
 
-int otbDrawPathAlign( int argc, char ** argv )
+int otbDrawPathAlign( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbDrawPathList.cxx b/Testing/Code/FeatureExtraction/otbDrawPathList.cxx
index bd2202a9483f95b707e7dac33fbafe7d12ea22df..646b16f6cb1fe842c46e812d0c64c6fef5e8ba7d 100644
--- a/Testing/Code/FeatureExtraction/otbDrawPathList.cxx
+++ b/Testing/Code/FeatureExtraction/otbDrawPathList.cxx
@@ -32,7 +32,7 @@
 #include "otbImageFileWriter.h"
 
 
-int otbDrawPathListTracerLignes( int argc, char ** argv )
+int otbDrawPathListTracerLignes( int argc, char * argv[] )
 {
   try 
     { 
@@ -194,7 +194,7 @@ int otbDrawPathListTracerLignes( int argc, char ** argv )
 }
 
 
-int otbDrawPathList( int argc, char ** argv )
+int otbDrawPathList( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbExtractSegments.cxx b/Testing/Code/FeatureExtraction/otbExtractSegments.cxx
index e0f0ea904d7fcad38cf273cd4a98b713fed6da1c..45b9c48ca90a8f7247662ac738cf5808074ddc3a 100755
--- a/Testing/Code/FeatureExtraction/otbExtractSegments.cxx
+++ b/Testing/Code/FeatureExtraction/otbExtractSegments.cxx
@@ -29,7 +29,7 @@
 #include "otbImageFileWriter.h"
 #include "otbExtractSegmentsImageFilter.h"
 
-int otbExtractSegments( int argc, char ** argv )
+int otbExtractSegments( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbExtractSegmentsNew.cxx b/Testing/Code/FeatureExtraction/otbExtractSegmentsNew.cxx
index c8f65004fcab642812af3683d565d8b69fe21605..d763f3b238a8a0c2a85b4f8afa14fe997eca9c3c 100755
--- a/Testing/Code/FeatureExtraction/otbExtractSegmentsNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbExtractSegmentsNew.cxx
@@ -29,7 +29,7 @@
 #include "otbImageFileWriter.h"
 #include "otbExtractSegmentsImageFilter.h"
 
-int otbExtractSegmentsNew( int argc, char ** argv )
+int otbExtractSegmentsNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbFillGapsFilter.cxx b/Testing/Code/FeatureExtraction/otbFillGapsFilter.cxx
index 44eef6c839bde5a32bf0840083d1f99dd233cf71..087491e08fd796902e66d536d02eb64f0fe3a475 100755
--- a/Testing/Code/FeatureExtraction/otbFillGapsFilter.cxx
+++ b/Testing/Code/FeatureExtraction/otbFillGapsFilter.cxx
@@ -28,7 +28,7 @@
 #include "otbDrawLineSpatialObjectListFilter.h"
 
 
-int otbFillGapsFilter( int argc, char ** argv )
+int otbFillGapsFilter( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbFillGapsFilterNew.cxx b/Testing/Code/FeatureExtraction/otbFillGapsFilterNew.cxx
index d76030447c21f3496c89942ad3cdc4e8c73a2b0c..811e21271d078071f9fedf652a9de180b13495ef 100644
--- a/Testing/Code/FeatureExtraction/otbFillGapsFilterNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbFillGapsFilterNew.cxx
@@ -23,7 +23,7 @@
 #include "itkExceptionObject.h"
 #include "otbFillGapsFilter.h"
 
-int otbFillGapsFilterNew( int argc, char ** argv )
+int otbFillGapsFilterNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbFlusserImage.cxx b/Testing/Code/FeatureExtraction/otbFlusserImage.cxx
index f0359c7c15978ff0990ae4e053adc6b20e5cef44..64b5ad75183965231bea1cc3bcecf9c962851fbb 100644
--- a/Testing/Code/FeatureExtraction/otbFlusserImage.cxx
+++ b/Testing/Code/FeatureExtraction/otbFlusserImage.cxx
@@ -26,7 +26,7 @@
 #include "otbImageFileReader.h"
 #include "otbFlusserImageFunction.h"
 
-int otbFlusserImage( int argc, char ** argv )
+int otbFlusserImage( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbFlusserPath.cxx b/Testing/Code/FeatureExtraction/otbFlusserPath.cxx
index 2bbaa2aacd80f2d61f8b028a45bc2c6c9d37fbbe..06875b092dbd3641d23e33fefcad9f51949aa68f 100644
--- a/Testing/Code/FeatureExtraction/otbFlusserPath.cxx
+++ b/Testing/Code/FeatureExtraction/otbFlusserPath.cxx
@@ -25,7 +25,7 @@
 #include "itkPolyLineParametricPath.h"
 #include "itkExceptionObject.h"
 
-int otbFlusserPath( int argc, char ** argv )
+int otbFlusserPath( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbFlusserPathNew.cxx b/Testing/Code/FeatureExtraction/otbFlusserPathNew.cxx
index 73b40f81d3ee3e6783be0c559631ef1663dd57eb..f5835bccbb9b39b94b4f1a270b034dc90f3f4931 100644
--- a/Testing/Code/FeatureExtraction/otbFlusserPathNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbFlusserPathNew.cxx
@@ -24,7 +24,7 @@
 #include "itkPolyLineParametricPath.h"
 #include "itkExceptionObject.h"
 
-int otbFlusserPathNew( int argc, char ** argv )
+int otbFlusserPathNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbHarrisImage.cxx b/Testing/Code/FeatureExtraction/otbHarrisImage.cxx
index 2f26474ae7f9c04aa5366d937c8800339a0154c8..a27dfc3ce43b9404b462b97e6f4b5ee0beb3f7f0 100644
--- a/Testing/Code/FeatureExtraction/otbHarrisImage.cxx
+++ b/Testing/Code/FeatureExtraction/otbHarrisImage.cxx
@@ -27,7 +27,7 @@
 #include "itkImageFileWriter.h"
 #include "otbHarrisImageFilter.h"
 
-int otbHarrisImage( int argc, char ** argv )
+int otbHarrisImage( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbHarrisToPointSet.cxx b/Testing/Code/FeatureExtraction/otbHarrisToPointSet.cxx
index b6822c0436ddccee741438ab610868b551c7ce5a..ce2b94c10c8381e8c9545bfb5451addca50ce9e6 100644
--- a/Testing/Code/FeatureExtraction/otbHarrisToPointSet.cxx
+++ b/Testing/Code/FeatureExtraction/otbHarrisToPointSet.cxx
@@ -27,7 +27,7 @@
 #include "itkImageFileWriter.h"
 #include "otbHarrisImageToPointSetFilter.h"
 
-int otbHarrisImageToPointSet( int argc, char ** argv )
+int otbHarrisImageToPointSet( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbHuImage.cxx b/Testing/Code/FeatureExtraction/otbHuImage.cxx
index fa72a24472f7f317396d7111d0ed5d1984813a0f..135373be686de2aa5412ce3e2ccbb30b3c2ced31 100644
--- a/Testing/Code/FeatureExtraction/otbHuImage.cxx
+++ b/Testing/Code/FeatureExtraction/otbHuImage.cxx
@@ -26,7 +26,7 @@
 #include "otbImageFileReader.h"
 #include "otbHuImageFunction.h"
 
-int otbHuImage( int argc, char ** argv )
+int otbHuImage( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbHuPath.cxx b/Testing/Code/FeatureExtraction/otbHuPath.cxx
index 5bf3f34881627aabe081382efd883cfbed7efd4d..8f83aedbafd754cb893c8cb8d332b248d9bdd67b 100644
--- a/Testing/Code/FeatureExtraction/otbHuPath.cxx
+++ b/Testing/Code/FeatureExtraction/otbHuPath.cxx
@@ -25,7 +25,7 @@
 #include "itkPolyLineParametricPath.h"
 #include "itkExceptionObject.h"
 
-int otbHuPath( int argc, char ** argv )
+int otbHuPath( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbHuPathNew.cxx b/Testing/Code/FeatureExtraction/otbHuPathNew.cxx
index 87b6199b77502fa37f09818560678aed6bc1d380..beb362eec09aa0b5854aeca38094cce30e0836b2 100644
--- a/Testing/Code/FeatureExtraction/otbHuPathNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbHuPathNew.cxx
@@ -24,7 +24,7 @@
 #include "otbHuPathFunction.h"
 #include "itkPolyLineParametricPath.h"
 
-int otbHuPathNew( int argc, char ** argv )
+int otbHuPathNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbMultiplyByScalarImageTest.cxx b/Testing/Code/FeatureExtraction/otbMultiplyByScalarImageTest.cxx
index 3274c5dc6f1e15656e955189c281bd624bca0002..8c05d70e3ec8c0ce887d9a4b824dabd0b521864c 100644
--- a/Testing/Code/FeatureExtraction/otbMultiplyByScalarImageTest.cxx
+++ b/Testing/Code/FeatureExtraction/otbMultiplyByScalarImageTest.cxx
@@ -25,7 +25,7 @@
 #include "itkImageRegionIteratorWithIndex.h"
 #include "otbMultiplyByScalarImageFilter.h"
 
-int otbMultiplyByScalarImageFilterTest( int argc, char ** argv )
+int otbMultiplyByScalarImageFilterTest( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/FeatureExtraction/otbThresholdImageToPointSetTest.cxx b/Testing/Code/FeatureExtraction/otbThresholdImageToPointSetTest.cxx
index b6f100c5436b1ec438bf2b60c8bf7ef1b10ec1c0..1ab183414a7997e3064fe1e07e4d83740ab84b4a 100644
--- a/Testing/Code/FeatureExtraction/otbThresholdImageToPointSetTest.cxx
+++ b/Testing/Code/FeatureExtraction/otbThresholdImageToPointSetTest.cxx
@@ -27,7 +27,7 @@
 #include "otbThresholdImageToPointSetFilter.h"
 #include "itkPointSet.h"
 
-int otbThresholdImageToPointSetTest( int argc, char ** argv )
+int otbThresholdImageToPointSetTest( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/IO/otbImageIOFactoryTest.cxx b/Testing/Code/IO/otbImageIOFactoryTest.cxx
index 57b36488e2c7450958c6d20626295e8ac2fa23bb..d02181de99524b908ae25f8988b3906159bd8de7 100755
--- a/Testing/Code/IO/otbImageIOFactoryTest.cxx
+++ b/Testing/Code/IO/otbImageIOFactoryTest.cxx
@@ -24,7 +24,7 @@
 #include "itkExceptionObject.h"
 #include <iostream>
 
-int otbImageIOFactoryTest(int , char* [])
+int otbImageIOFactoryTest(int argc, char* argv [])
 {
   try
   {
diff --git a/Testing/Code/IO/otbMultiToMonoChannelExtractROISAR.cxx b/Testing/Code/IO/otbMultiToMonoChannelExtractROISAR.cxx
index 1657997c39aa39198f67cc76266275f0a4fad718..4f839b135ffb0340584ef93b70b12498d94c3f31 100644
--- a/Testing/Code/IO/otbMultiToMonoChannelExtractROISAR.cxx
+++ b/Testing/Code/IO/otbMultiToMonoChannelExtractROISAR.cxx
@@ -23,7 +23,7 @@
 #include "otbImageFileWriter.h"
 #include "otbExtractROI.h"
 
-int otbMultiToMonoChannelExtractROISAR ( int argc, char ** argv )
+int otbMultiToMonoChannelExtractROISAR ( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Visu/otbImageView.cxx b/Testing/Code/Visu/otbImageView.cxx
index 40acac79fda7f4d96084299059a76b9b1a86d9ac..7c27a0c8454c1bff01cbb2455f6da990bf7278e7 100644
--- a/Testing/Code/Visu/otbImageView.cxx
+++ b/Testing/Code/Visu/otbImageView.cxx
@@ -27,7 +27,7 @@
 #include "otbZoomImageView.h"
 #include "otbScrollImageView.h"
 
-int otbImageView( int argc, char ** argv )
+int otbImageView( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Visu/otbImageViewer.cxx b/Testing/Code/Visu/otbImageViewer.cxx
index 649764f9f6dec43abf76ef78f3232fa202da557c..969b659c1aadb3809305af722cf3b2ecf1a5e946 100644
--- a/Testing/Code/Visu/otbImageViewer.cxx
+++ b/Testing/Code/Visu/otbImageViewer.cxx
@@ -23,7 +23,7 @@
 #include "otbImageFileReader.h"
 #include "otbImageViewer.h"
 
-int main( int argc, char ** argv )
+int main( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Visu/otbImageViewerAS.cxx b/Testing/Code/Visu/otbImageViewerAS.cxx
index 77f380530efe61591c6118776358b1edddecdc5b..7f6b83366980f5bc4ed46069937805bdaf53766a 100755
--- a/Testing/Code/Visu/otbImageViewerAS.cxx
+++ b/Testing/Code/Visu/otbImageViewerAS.cxx
@@ -24,7 +24,7 @@
 #include "otbImageFileReader.h"
 #include "otbImageViewerAS.h"
 
-int main( int argc, char ** argv )
+int main( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Visu/otbImageViewerNew.cxx b/Testing/Code/Visu/otbImageViewerNew.cxx
index 2ed808a48f71a11f5fc221736dee66a1101ed762..bb85a9bf43e29aea48c6505fbf7b82f53c96f48c 100644
--- a/Testing/Code/Visu/otbImageViewerNew.cxx
+++ b/Testing/Code/Visu/otbImageViewerNew.cxx
@@ -22,7 +22,7 @@
 
 #include "otbImageViewer.h"
 
-int otbImageViewerNew( int argc, char ** argv )
+int otbImageViewerNew( int argc, char * argv[] )
 {
   try 
     { 
diff --git a/Testing/Code/Visu/otbImageViewerWithitkImage.cxx b/Testing/Code/Visu/otbImageViewerWithitkImage.cxx
index 8bdf1c7bdfb2e791fcf199580df6ea953290c561..4171760026c21738b0725e78242f4b8707ea1198 100755
--- a/Testing/Code/Visu/otbImageViewerWithitkImage.cxx
+++ b/Testing/Code/Visu/otbImageViewerWithitkImage.cxx
@@ -24,7 +24,7 @@
 
 #include "otbImageViewer.h"
 
-int main( int argc, char ** argv )
+int main( int argc, char * argv[] )
 {
 
 
diff --git a/Testing/Code/Visu/otbImageViewerWithitkVectorImage.cxx b/Testing/Code/Visu/otbImageViewerWithitkVectorImage.cxx
index 13e6ba3eb5a7081a1c6d969a732952467f40173b..c0377c960b4754a88469da3b2a50d40fb97eb641 100755
--- a/Testing/Code/Visu/otbImageViewerWithitkVectorImage.cxx
+++ b/Testing/Code/Visu/otbImageViewerWithitkVectorImage.cxx
@@ -25,7 +25,7 @@
 
 #include "otbImageViewer.h"
 
-int main( int argc, char ** argv )
+int main( int argc, char * argv[] )
 {