diff options
author | rtm <rtm> | 2006-08-12 22:44:26 +0000 |
---|---|---|
committer | rtm <rtm> | 2006-08-12 22:44:26 +0000 |
commit | 05e975511bcf7f33955208319655dbfc687a7b0c (patch) | |
tree | cee2b914d15bfc1d48c16a3c275b453e90f3abc6 /defs.h | |
parent | cd93074e5bed8fdbc84f2960c3219c7cf791b020 (diff) | |
download | xv6-labs-05e975511bcf7f33955208319655dbfc687a7b0c.tar.gz xv6-labs-05e975511bcf7f33955208319655dbfc687a7b0c.tar.bz2 xv6-labs-05e975511bcf7f33955208319655dbfc687a7b0c.zip |
zero out all of dirent.name when creating
don't increase length of directory
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ void binit(void); struct buf; struct buf * getblk(uint dev, uint sector); struct buf *bread(uint, uint); -void bwrite(uint, struct buf *, uint); +void bwrite(struct buf *, uint); void brelse(struct buf *); // fs.c |