diff options
Diffstat (limited to 'fs.h')
-rw-r--r-- | fs.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -21,8 +21,10 @@ struct dinode { #define IPB (512 / sizeof(struct dinode)) +#define DIRSIZ 14 + struct dirent { ushort inum; - char name[14]; + char name[DIRSIZ]; }; |