]> granicus.if.org Git - imagemagick/blobdiff - MagickCore/colormap-private.h
(no commit message)
[imagemagick] / MagickCore / colormap-private.h
index c97e370011428668340e0891a2b1fc88f8e4e087..dc7dd1371384059693f3c6cedad06ce8829f9ae4 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
+  Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization
   dedicated to making software imaging solutions freely available.
 
   You may not use this file except in compliance with the License.
 #ifndef _MAGICKCORE_COLORMAP_PRIVATE_H
 #define _MAGICKCORE_COLORMAP_PRIVATE_H
 
+#include "MagickCore/image.h"
+#include "MagickCore/color.h"
+#include "MagickCore/exception-private.h"
+
 #if defined(__cplusplus) || defined(c_plusplus)
 extern "C" {
 #endif
 
-#include <MagickCore/image.h>
-#include <MagickCore/color.h>
-#include <MagickCore/exception-private.h>
-
 static inline Quantum ConstrainColormapIndex(Image *image,const size_t index,
   ExceptionInfo *exception)
 {
   if (index < image->colors)
     return((Quantum) index);
   (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
-    "InvalidColormapIndex","'%s'",image->filename);
+    "InvalidColormapIndex","`%s'",image->filename);
   return((Quantum) 0);
 }