about summary refs log tree commit diff
path: root/converter/other/svgtopam.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2009-09-18 19:04:37 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2009-09-18 19:04:37 +0000
commit49f4336c9bba33650573ba780b70bc501b38643e (patch)
treefb90955625af35cb9f97bda6b04db77a82df2287 /converter/other/svgtopam.c
parent5b6f108e18f64f5fb9c1f658386eaf947ae4bdee (diff)
downloadnetpbm-mirror-49f4336c9bba33650573ba780b70bc501b38643e.tar.gz
netpbm-mirror-49f4336c9bba33650573ba780b70bc501b38643e.tar.xz
netpbm-mirror-49f4336c9bba33650573ba780b70bc501b38643e.zip
Release 10.35.68
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@989 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/svgtopam.c')
-rw-r--r--converter/other/svgtopam.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/converter/other/svgtopam.c b/converter/other/svgtopam.c
index a2fe9f9d..76e122db 100644
--- a/converter/other/svgtopam.c
+++ b/converter/other/svgtopam.c
@@ -189,13 +189,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;
     
@@ -296,8 +296,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;
@@ -308,7 +308,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 */