From 57fb462ba10612d090c0f51581f1d3a9182bb892 Mon Sep 17 00:00:00 2001
From: Thomas Feuvrier <thomas.feuvrier@c-s.fr>
Date: Fri, 7 Jul 2006 10:02:27 +0000
Subject: [PATCH] Remplacement de char ** argv par char * argv []

---
 Testing/Code/BasicFilters/otbFrostFilter.cxx                  | 2 +-
 Testing/Code/BasicFilters/otbFrostFilterNew.cxx               | 2 +-
 Testing/Code/BasicFilters/otbFrostFilterTest.cxx              | 2 +-
 Testing/Code/BasicFilters/otbImageToPointSetFilterTest.cxx    | 2 +-
 Testing/Code/BasicFilters/otbLeeFilter.cxx                    | 2 +-
 Testing/Code/Common/otbExtractROI.cxx                         | 2 +-
 Testing/Code/Common/otbExtractROINew.cxx                      | 2 +-
 Testing/Code/Common/otbExtractROI_RGB.cxx                     | 2 +-
 Testing/Code/Common/otbLineSpatialObjectList.cxx              | 2 +-
 Testing/Code/Common/otbMultiChannelExtractROI.cxx             | 4 ++--
 Testing/Code/Common/otbMultiChannelExtractROINew.cxx          | 2 +-
 Testing/Code/Common/otbMultiToMonoChannelExtractROI.cxx       | 4 ++--
 Testing/Code/Common/otbMultiToMonoChannelExtractROINew.cxx    | 2 +-
 Testing/Code/Common/otbPointSetSourceTest.cxx                 | 2 +-
 Testing/Code/Common/otbTestCommandLineArgumentParser.cxx      | 2 +-
 Testing/Code/Common/otbTestCommandLineArgumentParserHelp.cxx  | 2 +-
 Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx  | 2 +-
 .../Code/Common/otbTestCommandLineArgumentParserWithError.cxx | 2 +-
 Testing/Code/Common/otbTestExtractROI.cxx                     | 2 +-
 Testing/Code/FeatureExtraction/otbAlignImageToPath.cxx        | 2 +-
 .../FeatureExtraction/otbAssymmetricFusionOfLineDetector.cxx  | 2 +-
 .../otbAssymmetricFusionOfLineDetectorNew.cxx                 | 2 +-
 Testing/Code/FeatureExtraction/otbComplexMomentImage.cxx      | 2 +-
 Testing/Code/FeatureExtraction/otbComplexMomentPath.cxx       | 2 +-
 Testing/Code/FeatureExtraction/otbComplexMomentPathFloat.cxx  | 2 +-
 Testing/Code/FeatureExtraction/otbComplexMomentPathNew.cxx    | 2 +-
 Testing/Code/FeatureExtraction/otbDrawPath.cxx                | 2 +-
 Testing/Code/FeatureExtraction/otbDrawPathAlign.cxx           | 2 +-
 Testing/Code/FeatureExtraction/otbDrawPathList.cxx            | 4 ++--
 Testing/Code/FeatureExtraction/otbExtractSegments.cxx         | 2 +-
 Testing/Code/FeatureExtraction/otbExtractSegmentsNew.cxx      | 2 +-
 Testing/Code/FeatureExtraction/otbFillGapsFilter.cxx          | 2 +-
 Testing/Code/FeatureExtraction/otbFillGapsFilterNew.cxx       | 2 +-
 Testing/Code/FeatureExtraction/otbFlusserImage.cxx            | 2 +-
 Testing/Code/FeatureExtraction/otbFlusserPath.cxx             | 2 +-
 Testing/Code/FeatureExtraction/otbFlusserPathNew.cxx          | 2 +-
 Testing/Code/FeatureExtraction/otbHarrisImage.cxx             | 2 +-
 Testing/Code/FeatureExtraction/otbHarrisToPointSet.cxx        | 2 +-
 Testing/Code/FeatureExtraction/otbHuImage.cxx                 | 2 +-
 Testing/Code/FeatureExtraction/otbHuPath.cxx                  | 2 +-
 Testing/Code/FeatureExtraction/otbHuPathNew.cxx               | 2 +-
 .../Code/FeatureExtraction/otbMultiplyByScalarImageTest.cxx   | 2 +-
 .../FeatureExtraction/otbThresholdImageToPointSetTest.cxx     | 2 +-
 Testing/Code/IO/otbImageIOFactoryTest.cxx                     | 2 +-
 Testing/Code/IO/otbMultiToMonoChannelExtractROISAR.cxx        | 2 +-
 Testing/Code/Visu/otbImageView.cxx                            | 2 +-
 Testing/Code/Visu/otbImageViewer.cxx                          | 2 +-
 Testing/Code/Visu/otbImageViewerAS.cxx                        | 2 +-
 Testing/Code/Visu/otbImageViewerNew.cxx                       | 2 +-
 Testing/Code/Visu/otbImageViewerWithitkImage.cxx              | 2 +-
 Testing/Code/Visu/otbImageViewerWithitkVectorImage.cxx        | 2 +-
 51 files changed, 54 insertions(+), 54 deletions(-)

diff --git a/Testing/Code/BasicFilters/otbFrostFilter.cxx b/Testing/Code/BasicFilters/otbFrostFilter.cxx
index 4150f7ed8d..9e2fef0780 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 fca26053a1..b1f3338605 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 bde1bef858..39c8eb10eb 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 2e9d523f5c..7456256617 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 26e8a4b212..0b6740fc16 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 9af2a0b7d7..33609993b0 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 214ac32612..f17f6a6d59 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 1d885bf9e9..ce7657d6a0 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 75ad96201c..6e20510827 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 ee76a810de..8a6a5d76f3 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 dfee2960bf..459cb3376e 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 4fd382b490..c9d583cbe5 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 bfe7a09240..5ee2157779 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 b39e410178..ccc4c4d97a 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 24474e8e2b..dd47f05798 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 a614ac17d6..a2d88af07a 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 aa29132192..d32537ecaf 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 313e3e9ec0..7dc3732e66 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 e8b884a09b..ea8c47b49f 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 ba5a248d95..650054f23b 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 02f0d81f49..beeddfd59a 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 f0f89465b4..dbdaf202e7 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 67852d0a1f..111db1b2e9 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 136ee0dc26..0102b7c2af 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 0ea51d7f46..33cf633c0a 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 b0acd6cf82..d410fb1a89 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 0e44fbebb1..80b4d9b593 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 f7d3aa1b62..dc1937fc9d 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 bd2202a948..646b16f6cb 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 e0f0ea904d..45b9c48ca9 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 c8f65004fc..d763f3b238 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 44eef6c839..087491e08f 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 d76030447c..811e21271d 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 f0359c7c15..64b5ad7518 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 2bbaa2aacd..06875b092d 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 73b40f81d3..f5835bccbb 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 2f26474ae7..a27dfc3ce4 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 b6822c0436..ce2b94c10c 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 fa72a24472..135373be68 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 5bf3f34881..8f83aedbaf 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 87b6199b77..beb362eec0 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 3274c5dc6f..8c05d70e3e 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 b6f100c543..1ab183414a 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 57b36488e2..d02181de99 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 1657997c39..4f839b135f 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 40acac79fd..7c27a0c845 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 649764f9f6..969b659c1a 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 77f380530e..7f6b833669 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 2ed808a48f..bb85a9bf43 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 8bdf1c7bdf..4171760026 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 13e6ba3eb5..c0377c960b 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[] )
 {
 
 
-- 
GitLab