From 4aad296368d248d83a6d24a216fb04c43338ab7b Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Sat, 22 Sep 2018 20:32:28 +0200 Subject: [PATCH] Corrected includes. --- coders/png.c | 4 ++-- coders/tiff.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/coders/png.c b/coders/png.c index e204b6a15..fd55b207c 100644 --- a/coders/png.c +++ b/coders/png.c @@ -104,8 +104,8 @@ /* PNG_PTR_NORETURN does not work on some platforms, in libpng-1.5.x */ #define PNG_PTR_NORETURN -#include "png.h" -#include "zlib.h" +#include +#include /* ImageMagick differences */ #define first_scene scene diff --git a/coders/tiff.c b/coders/tiff.c index 137fbd8e3..4d5559958 100644 --- a/coders/tiff.c +++ b/coders/tiff.c @@ -90,10 +90,10 @@ #include "MagickCore/utility.h" #if defined(MAGICKCORE_TIFF_DELEGATE) # if defined(MAGICKCORE_HAVE_TIFFCONF_H) -# include "tiffconf.h" +# include # endif -# include "tiff.h" -# include "tiffio.h" +# include +# include # if !defined(COMPRESSION_ADOBE_DEFLATE) # define COMPRESSION_ADOBE_DEFLATE 8 # endif -- 2.40.0