Browse Source

Merged revisions 6470 via svnmerge from
svn+ssh://[email protected]/FPC/svn/fpc/trunk

........
r6470 | jonas | 2007-02-13 16:16:23 +0100 (Tue, 13 Feb 2007) | 2 lines

* fixed type of ino_t

........

git-svn-id: branches/fpc_2_3@6472 -

Jonas Maebe 18 years ago
parent
commit
614762486f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/darwin/ptypes.inc

+ 1 - 1
rtl/darwin/ptypes.inc

@@ -34,7 +34,7 @@ type
     TGid     = gid_t;
     pGid     = ^gid_t;
 
-    ino_t    = clong;           { used for file serial numbers }
+    ino_t    = cuint32;         { used for file serial numbers }
     TIno     = ino_t;
     pIno     = ^ino_t;