From 5b2e5f7af03489aa4da0de4224fc316552308323 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Tue, 8 Sep 2009 02:47:50 +0000 Subject: Don't use uint git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@987 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/svgtopam.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'converter/other') diff --git a/converter/other/svgtopam.c b/converter/other/svgtopam.c index a97599cd..c7eac8e6 100644 --- a/converter/other/svgtopam.c +++ b/converter/other/svgtopam.c @@ -200,13 +200,13 @@ destroyPath(path * const pathP) { typedef struct { - uint x; - uint y; + unsigned int x; + unsigned int y; } point; static point -makePoint(uint const x, - uint const y) { +makePoint(unsigned int const x, + unsigned int const y) { point p; @@ -316,8 +316,8 @@ skipWhiteSpace(pathReader * const pathReaderP) { static void -getNumber(pathReader * const pathReaderP, - uint * const numberP) { +getNumber(pathReader * const pathReaderP, + unsigned int * const numberP) { const path * const pathP = pathReaderP->pathP; const char * const pathText = pathP->pathText; @@ -328,7 +328,7 @@ getNumber(pathReader * const pathReaderP, if (pathReaderP->cursor >= pathTextLength) pm_error("Path description ends where a number was expected."); else { - uint number; + unsigned int number; number = 0; /* initial value */ -- cgit 1.4.1