diff --git a/Magick++/lib/Options.cpp b/Magick++/lib/Options.cpp
index 6a05dc0..96c0239 100644
--- a/Magick++/lib/Options.cpp
+++ b/Magick++/lib/Options.cpp
@@ -359,11 +359,10 @@
FormatMagickString( _imageInfo->filename, MaxTextExtent, "%.1024s:", magick_.c_str() );
GetExceptionInfo(&exception);
- SetImageInfo( _imageInfo, MagickTrue, &exception);
+ SetImageInfo( _imageInfo, 1, &exception);
if ( *_imageInfo->magick == '\0' )
- throwExceptionExplicit( OptionWarning,
- "Unrecognized image format",
- magick_.c_str() );
+ throwExceptionExplicit( OptionWarning, "Unrecognized image format",
+ magick_.c_str() );
(void) DestroyExceptionInfo( &exception );
}
std::string Magick::Options::magick ( void ) const