From 55a7bb718ffe9598b8c39902023e68355836592f Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 18 May 2005 09:25:54 +0000 Subject: [PATCH] Declare pixman_fixed16_16_t properly as int32_t rather than just int. Reported by Lance Fetters. --- pixman/ChangeLog | 5 +++++ pixman/src/pixman.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pixman/ChangeLog b/pixman/ChangeLog index af0b96cf1..a5c49d813 100644 --- a/pixman/ChangeLog +++ b/pixman/ChangeLog @@ -1,3 +1,8 @@ +2005-05-18 Carl Worth + + * src/pixman.h: Declare pixman_fixed16_16_t properly as int32_t + rather than just int. Reported by Lance Fetters. + 2005-05-12 Keith Packard reviewed by: cworth diff --git a/pixman/src/pixman.h b/pixman/src/pixman.h index b7f4ba3ee..c94584fbc 100644 --- a/pixman/src/pixman.h +++ b/pixman/src/pixman.h @@ -54,7 +54,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ -/* $Id: pixman.h,v 1.19 2005-03-29 19:45:52 tor Exp $ */ +/* $Id: pixman.h,v 1.20 2005-05-18 16:25:54 cworth Exp $ */ /* libic.h */ @@ -288,7 +288,7 @@ int pixman_image_set_clip_region (pixman_image_t *image, pixman_region16_t *region); -typedef int pixman_fixed16_16_t; +typedef int32_t pixman_fixed16_16_t; typedef struct pixman_point_fixed { pixman_fixed16_16_t x, y;