From cfccf749d0dc6c93d4cc0dff5aabf72d115fe899 Mon Sep 17 00:00:00 2001 From: Cristy Date: Tue, 13 Mar 2018 20:04:21 -0400 Subject: [PATCH] ... --- coders/pcl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coders/pcl.c b/coders/pcl.c index e94ae4f31..088645b6e 100644 --- a/coders/pcl.c +++ b/coders/pcl.c @@ -326,8 +326,8 @@ static Image *ReadPCLImage(const ImageInfo *image_info,ExceptionInfo *exception) (void) ParseAbsoluteGeometry(image_info->page,&page); density=AcquireString(""); options=AcquireString(""); - (void) FormatLocaleString(density,MagickPathExtent,"%gx%g",image->resolution.x, - image->resolution.y); + (void) FormatLocaleString(density,MagickPathExtent,"%gx%g", + image->resolution.x,image->resolution.y); page.width=(size_t) floor(page.width*image->resolution.x/delta.x+0.5); page.height=(size_t) floor(page.height*image->resolution.y/delta.y+0.5); (void) FormatLocaleString(options,MagickPathExtent,"-g%.20gx%.20g ",(double) -- 2.40.0