Fix ino_t for stat13 x86_64 CPU

git-svn-id: trunk@20742 -
This commit is contained in:
pierre 2012-04-07 15:51:26 +00:00
parent 78e129931b
commit 13d667da45

View File

@ -35,7 +35,7 @@ type
{$ifdef NETBSD_USE_STAT30}
ino_t = cint64; { used for file serial numbers }
{$else}
ino_t = clong;
ino_t = cuint32;
{$endif}
TIno = ino_t;
pIno = ^ino_t;