From 431e846c03b39495ac57834a8b65b7499472ef1b Mon Sep 17 00:00:00 2001 From: Vladimir Vukicevic Date: Tue, 22 Jan 2008 16:30:37 -0800 Subject: [PATCH] cairo_point_int32_t is really int32_t, not int16_t Oops. --- src/cairo-types-private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo-types-private.h b/src/cairo-types-private.h index e38afbafc..ac7d83722 100644 --- a/src/cairo-types-private.h +++ b/src/cairo-types-private.h @@ -198,7 +198,7 @@ typedef struct _cairo_point_int16 { } cairo_point_int16_t; typedef struct _cairo_point_int32 { - int16_t x, y; + int32_t x, y; } cairo_point_int32_t; typedef struct _cairo_box_int16 {