From 81865486442d8014148bb2c1cc09ab14cf8c7fba Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@orfeo-toolbox.org> Date: Thu, 15 Jan 2009 15:48:34 +0100 Subject: [PATCH] BUG: unsigned short was set again by accident --- Testing/Code/IO/otbImageFileReaderERS.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Testing/Code/IO/otbImageFileReaderERS.cxx b/Testing/Code/IO/otbImageFileReaderERS.cxx index 53e7b969c7..95ad9cc959 100644 --- a/Testing/Code/IO/otbImageFileReaderERS.cxx +++ b/Testing/Code/IO/otbImageFileReaderERS.cxx @@ -36,7 +36,7 @@ int otbImageFileReaderERS(int argc, char* argv[]) const char * outputFilename = argv[2]; typedef float InputPixelType; - typedef unsigned short OutputPixelType; + typedef short OutputPixelType; const unsigned int Dimension = 2; typedef otb::VectorImage< InputPixelType, Dimension > InputImageType; -- GitLab