removed unnecessary whitespace
This commit is contained in:
parent
7bd63fe077
commit
dea41c09d8
|
@ -1,3 +1,4 @@
|
||||||
|
#include <types.h>
|
||||||
#define FS_ROOT_INODE 1
|
#define FS_ROOT_INODE 1
|
||||||
#define FS_BSIZE 512
|
#define FS_BSIZE 512
|
||||||
#define FS_NDIRECT 12
|
#define FS_NDIRECT 12
|
||||||
|
@ -17,9 +18,9 @@ struct superblock {
|
||||||
u32 firstlog;
|
u32 firstlog;
|
||||||
u32 firstinode;
|
u32 firstinode;
|
||||||
u32 firstfreemapblock;
|
u32 firstfreemapblock;
|
||||||
}
|
};
|
||||||
|
|
||||||
struct dirent {
|
struct dirent {
|
||||||
u16 inum;
|
u16 inum;
|
||||||
s8 name[FS_DIRSIZ];
|
s8 name[FS_DIRSIZ];
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue