[evince] Use 'unsigned int' instead of 'uint'



commit 9687e9224f56300c50de07ed91638057d9e34f4e
Author: Hib Eris <hib hiberis nl>
Date:   Thu Feb 23 17:08:37 2012 +0100

    Use 'unsigned int' instead of 'uint'
    
    Apparently, uint is not always defined by mingw compilers.

 backend/tiff/tiff2ps.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/backend/tiff/tiff2ps.c b/backend/tiff/tiff2ps.c
index fc63c2e..e57587f 100644
--- a/backend/tiff/tiff2ps.c
+++ b/backend/tiff/tiff2ps.c
@@ -1128,7 +1128,7 @@ PS_Lvl2page(TIFF2PSContext* ctx, TIFF* tif, uint32 w, uint32 h)
 	buf_data = (unsigned char *)_TIFFmalloc(chunk_size);
 	if (!buf_data) {
 		TIFFError(ctx->filename, "Can't alloc %u bytes for %s.",
-			(uint) chunk_size, tiled_image ? "tiles" : "strips");
+			(unsigned int) chunk_size, tiled_image ? "tiles" : "strips");
 		return(FALSE);
 	}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]