summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-05-18 09:25:54 +0000
committerCarl Worth <cworth@cworth.org>2005-05-18 09:25:54 +0000
commit55a7bb718ffe9598b8c39902023e68355836592f (patch)
tree3ef32c111faa334cb44675aa9d00abe8f74599de
parentf030aec810d74a60a44c35bf7815b9e94743cd65 (diff)
Declare pixman_fixed16_16_t properly as int32_t rather than just int. Reported by Lance Fetters.
-rw-r--r--pixman/ChangeLog5
-rw-r--r--pixman/src/pixman.h4
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 <cworth@cworth.org>
+
+ * 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 <keithp@keithp.com>
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;