about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2009-09-08 02:47:50 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2009-09-08 02:47:50 +0000
commit5b2e5f7af03489aa4da0de4224fc316552308323 (patch)
tree28d39204a1cbb8fe3e9319b86a666d129023dabe /converter/other
parent28e055cc0127086d908bfd6505ecd2509e5c9d89 (diff)
downloadnetpbm-mirror-5b2e5f7af03489aa4da0de4224fc316552308323.tar.gz
netpbm-mirror-5b2e5f7af03489aa4da0de4224fc316552308323.tar.xz
netpbm-mirror-5b2e5f7af03489aa4da0de4224fc316552308323.zip
Don't use uint
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@987 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-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 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 */