From 85020d2c1364495d217ed90a5a8f1f016dc865f6 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 18 Nov 2014 11:53:08 +0000 Subject: [PATCH] From: William R Sowerbutts Correct the inode type in a dirent. We accidentally kept the 32bit type from ELKS --- Library/include/dirent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; }; -- 2.34.1