From: Cristy Date: Tue, 29 Dec 2015 16:16:32 +0000 (-0500) Subject: Fix compile error X-Git-Tag: 7.0.1-0~394 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9982a5ff5263f6cdfab7e4988dc94ab2fe52a947;p=imagemagick Fix compile error --- diff --git a/Magick++/lib/Image.cpp b/Magick++/lib/Image.cpp index 546cc663e..bbc24ab25 100644 --- a/Magick++/lib/Image.cpp +++ b/Magick++/lib/Image.cpp @@ -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; }