cairo_point_int32_t is really int32_t, not int16_t

Oops.
This commit is contained in:
Vladimir Vukicevic 2008-01-22 16:30:37 -08:00 committed by Vladimir Vukicevic
parent 02970ac8cf
commit 431e846c03

View file

@ -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 {