diff --git a/app/otbSARMetadataCorrection.cxx b/app/otbSARMetadataCorrection.cxx
index 476965e77b45605f7467e936ef44b55c38d5c184..75114e09fedb3a3f67b4e76f9323274f46278835 100644
--- a/app/otbSARMetadataCorrection.cxx
+++ b/app/otbSARMetadataCorrection.cxx
@@ -1,3 +1,4 @@
+
 /*
  * Copyright (C) 2005-2018 Centre National d'Etudes Spatiales (CNES)
  *
@@ -695,7 +696,7 @@ private:
 	filterDEMClosestHgt->SetVectorLonLat(vector_lonlat);
 
 	// Init a vector for hgt
-	std::vector<double> * vector_hgt = new vector<double>();
+	std::vector<double> * vector_hgt = new std::vector<double>();
 	vector_hgt->resize(vector_lonlat->size()); // Same size than lon and lat
     
 	for (unsigned int k = 0; k < vector_lonlat->size(); k++)