From f6fd372a8b31a0bebbdfe36090d6ffc7bab9a2f8 Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Mon, 13 Oct 2014 18:54:12 -0700 Subject: [PATCH] pattern: Restore dropped inclusion of cairoint.h Fixes failure in make release-check due by check-preprocessor-syntax.sh due to requirement that cairoint.h be the first include for source files. --- src/cairo-pattern.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c index e16823dcc..010de5c30 100644 --- a/src/cairo-pattern.c +++ b/src/cairo-pattern.c @@ -28,6 +28,8 @@ * Carl Worth */ +#include "cairoint.h" + #include "cairo-array-private.h" #include "cairo-error-private.h" #include "cairo-freed-pool-private.h"