[cairo-commit] src/cairo-types-private.h
Vladimir Vukicevic
vladimir at kemper.freedesktop.org
Tue Jan 22 16:30:39 PST 2008
src/cairo-types-private.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 431e846c03b39495ac57834a8b65b7499472ef1b
Author: Vladimir Vukicevic <vladimir at pobox.com>
Date: Tue Jan 22 16:30:37 2008 -0800
cairo_point_int32_t is really int32_t, not int16_t
Oops.
diff --git a/src/cairo-types-private.h b/src/cairo-types-private.h
index e38afba..ac7d837 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 {
More information about the cairo-commit
mailing list