From 7ad923eb6ff71b3865ea43b2ee247715607146da Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=B8ren=20Sandmann?= Date: Thu, 10 May 2007 09:30:17 -0400 Subject: [PATCH] Make sure 64 bit fixed point types are signed --- pixman/pixman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixman/pixman.h b/pixman/pixman.h index 89a79b1..99f7905 100644 --- a/pixman/pixman.h +++ b/pixman/pixman.h @@ -105,7 +105,7 @@ typedef int pixman_bool_t; /* * Fixpoint numbers */ -typedef uint64_t pixman_fixed_32_32_t; +typedef int64_t pixman_fixed_32_32_t; typedef pixman_fixed_32_32_t pixman_fixed_48_16_t; typedef uint32_t pixman_fixed_1_31_t; typedef uint32_t pixman_fixed_1_16_t; -- 2.7.4