From: Alan Cox Date: Tue, 18 Nov 2014 11:53:08 +0000 (+0000) Subject: From: William R Sowerbutts X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=85020d2c1364495d217ed90a5a8f1f016dc865f6;p=FUZIX.git From: William R Sowerbutts Correct the inode type in a dirent. We accidentally kept the 32bit type from ELKS --- diff --git a/Library/include/dirent.h b/Library/include/dirent.h index 8eb8feea..707a5c28 100644 --- a/Library/include/dirent.h +++ b/Library/include/dirent.h @@ -30,7 +30,7 @@ struct dirent { /* Internal version */ struct __dirent { - long d_ino; + int d_ino; char d_name[30]; };