]> granicus.if.org Git - imagemagick/commitdiff
Build fix.
authordirk <dirk@git.imagemagick.org>
Sun, 12 Oct 2014 18:43:38 +0000 (18:43 +0000)
committerdirk <dirk@git.imagemagick.org>
Sun, 12 Oct 2014 18:43:38 +0000 (18:43 +0000)
coders/pdf.c
coders/ps.c

index ce93506a28856c6fb40d06383cf1fa9e67f74749..c75489e6370614db7240424f04356e276fb64126 100644 (file)
@@ -273,7 +273,7 @@ static MagickBooleanType InvokePDFDelegate(const MagickBooleanType verbose,
     errors=DestroyString(errors);
   return(MagickTrue);
 #else
-  status=SystemCommand(MagickFalse,verbose,command,exception);
+  status=SystemCommand(MagickFalse,verbose,command,output,exception);
   return(status == 0 ? MagickTrue : MagickFalse);
 #endif
 }
index ede8359e51a86d5b087d33e7b665da68f4ad4a14..5f73e3927b46df856e6d6091d35acc82b9b888db 100644 (file)
@@ -263,7 +263,7 @@ static MagickBooleanType InvokePostscriptDelegate(
     errors=DestroyString(errors);
   return(MagickTrue);
 #else
-  status=SystemCommand(MagickFalse,verbose,command,exception);
+  status=SystemCommand(MagickFalse,verbose,command,output,exception);
   return(status == 0 ? MagickTrue : MagickFalse);
 #endif
 }