pixman: Branch 'master'

Siarhei Siamashka siamashka at kemper.freedesktop.org
Tue Jan 25 04:41:07 PST 2011


 test/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e8a1b1c4e502ecbb70028bd5a86034bfe1b16997
Author: Rolland Dudemaine <rolland at ghs.com>
Date:   Tue Jan 25 13:55:28 2011 +0200

    test: Fix for mismatched 'fence_malloc' prototype/implementation
    
    Solves compilation problem when 'mprotect' is not available. For
    example, when using Green Hills Software MULTI compiler or mingw:
    http://lists.freedesktop.org/archives/pixman/2011-January/000939.html

diff --git a/test/utils.c b/test/utils.c
index a7abec5..2f21398 100644
--- a/test/utils.c
+++ b/test/utils.c
@@ -295,7 +295,7 @@ fence_free (void *data)
 #else
 
 void *
-fence_malloc (uint32_t len)
+fence_malloc (int64_t len)
 {
     return malloc (len);
 }


More information about the xorg-commit mailing list