]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 7 Jan 2014 15:38:21 +0000 (15:38 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 7 Jan 2014 15:38:21 +0000 (15:38 +0000)
MagickCore/identify.c

index 9b834b4245f1325bc9ba38877290d71fc98bc87c..c3cec97eae98b4939eca33a5e02c89ea1a9741f1 100644 (file)
@@ -374,22 +374,22 @@ static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
   ssize_t
     n;
 
-  n=FormatLocaleFile(file,"%s:\n",name);
-  n+=FormatLocaleFile(file,"      i1: %.*g",GetMagickPrecision(),
+  n=FormatLocaleFile(file,"%    s:\n",name);
+  n+=FormatLocaleFile(file,"      i1: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I1);
-  n+=FormatLocaleFile(file,"      i2: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i2: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I2);
-  n+=FormatLocaleFile(file,"      i3: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i3: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I3);
-  n+=FormatLocaleFile(file,"      i4: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i4: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I4);
-  n+=FormatLocaleFile(file,"      i5: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i5: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I5);
-  n+=FormatLocaleFile(file,"      i6: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i6: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I6);
-  n+=FormatLocaleFile(file,"      i7: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i7: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I7);
-  n+=FormatLocaleFile(file,"      i8: %.*g",GetMagickPrecision(),
+  n+=FormatLocaleFile(file,"      i8: %.*g\n",GetMagickPrecision(),
     channel_moments[channel].I8);
   return(n);
 }
@@ -801,7 +801,7 @@ MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
     }
   if (channel_moments != (ChannelMoments *) NULL)
     {
-      (void) FormatLocaleFile(file,"  Channel moments\n");
+      (void) FormatLocaleFile(file,"  Channel moments:\n");
       switch (colorspace)
       {
         case RGBColorspace: