]> granicus.if.org Git - imagemagick/commitdiff
Fix compile error
authorCristy <urban-warrior@imagemagick.org>
Tue, 29 Dec 2015 16:16:32 +0000 (11:16 -0500)
committerCristy <urban-warrior@imagemagick.org>
Tue, 29 Dec 2015 16:16:32 +0000 (11:16 -0500)
Magick++/lib/Image.cpp

index 546cc663e2fe23d96dede131cfafc0098221b0fb..bbc24ab251536f0d8ff8104d9f52fb5285d65179 100644 (file)
@@ -2565,7 +2565,8 @@ void Magick::Image::connectedComponents(const size_t connectivity_)
     *newImage;
 
   GetPPException;
-  newImage=ConnectedComponentsImage(constImage(),connectivity_,exceptionInfo);
+  newImage=ConnectedComponentsImage(constImage(),stdout,connectivity_,
+    MagickFalse,exceptionInfo);
   replaceImage(newImage);
   ThrowImageException;
 }