diff --git a/magick/property.c b/magick/property.c
index 9a510d4..aa5a6cf 100644
--- a/magick/property.c
+++ b/magick/property.c
@@ -2343,7 +2343,7 @@
           char
             format[MaxTextExtent];
 
-          (void) FormatMagickSize(GetBlobSize(image),format);
+          (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
           (void) FormatMagickString(value,MaxTextExtent,"%s",format);
           break;
         }
@@ -2612,7 +2612,7 @@
         (void) FormatMagickString(format,MaxTextExtent,"%lu",(unsigned long)
           length);
         if (length != (MagickSizeType) ((size_t) length))
-          (void) FormatMagickSize(length,format);
+          (void) FormatMagickSize(length,MagickFalse,format);
         q+=ConcatenateMagickString(q,format,extent);
         break;
       }