From: William R Sowerbutts
authorAlan Cox <alan@etchedpixels.co.uk>
Tue, 18 Nov 2014 11:53:08 +0000 (11:53 +0000)
committerAlan Cox <alan@etchedpixels.co.uk>
Tue, 18 Nov 2014 11:53:08 +0000 (11:53 +0000)
Correct the inode type in a dirent.

We accidentally kept the 32bit type from ELKS

Library/include/dirent.h

index 8eb8fee..707a5c2 100644 (file)
@@ -30,7 +30,7 @@ struct dirent {
 
 /* Internal version */
 struct __dirent {
-       long            d_ino;
+       int             d_ino;
        char            d_name[30];
 };