From: Simon Rit Date: Fri, 17 Jun 2011 16:53:45 +0000 (+0200) Subject: Oups, wrong exception message X-Git-Tag: v1.3.0~318^2~3 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=2da8484f233bcfd3378c4368933bddcd6fa16ae2;p=clitk.git Oups, wrong exception message --- diff --git a/itk/clitkResampleImageWithOptionsFilter.txx b/itk/clitkResampleImageWithOptionsFilter.txx index 36e08bf..a3f88be 100644 --- a/itk/clitkResampleImageWithOptionsFilter.txx +++ b/itk/clitkResampleImageWithOptionsFilter.txx @@ -126,14 +126,14 @@ GenerateOutputInformation() // because, from a clinical point of view, it's better to // remove data than to add data that privously didn't exist. if(inputSpacing[i]*m_OutputSpacing[i]<0) - itkExceptionMacro( << "Input and output spacings don't have the same size, can't cope with that" ); + itkExceptionMacro( << "Input and output spacings don't have the same signs, can't cope with that" ); m_OutputSize[i] = (int)floor(inputSize[i]*inputSpacing[i]/m_OutputSpacing[i]); } } else { if (m_OutputSpacing[0] != -1) { // apply spacing, compute size for(unsigned int i=0; i