From b814b9148bbc8522cb7feac3cd049e4185fdbab0 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Fri, 4 May 2007 07:54:18 +0000 Subject: don't use 'uint' git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@287 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/libpm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/libpm.c') diff --git a/lib/libpm.c b/lib/libpm.c index 88b790e6..913b1644 100644 --- a/lib/libpm.c +++ b/lib/libpm.c @@ -1663,9 +1663,9 @@ pm_check(FILE * const file, void -pm_drain(FILE * const fileP, - uint const limit, - uint * const bytesReadP) { +pm_drain(FILE * const fileP, + unsigned int const limit, + unsigned int * const bytesReadP) { /*---------------------------------------------------------------------------- Read bytes from *fileP until EOF and return as *bytesReadP how many there were. @@ -1676,7 +1676,7 @@ pm_drain(FILE * const fileP, didn't leave some input behind, which could mean you didn't properly interpret the file. -----------------------------------------------------------------------------*/ - uint bytesRead; + unsigned int bytesRead; bool eof; for (bytesRead = 0, eof = false; !eof && bytesRead < 4096;) { -- cgit 1.4.1