Changeset b5501d0 in mainline
- Timestamp:
- 2011-09-06T18:59:28Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5e0427e8
- Parents:
- a4726cb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_balloc.c
ra4726cb rb5501d0 56 56 { 57 57 int r = mfs_alloc_bit(inst, inum, BMAP_INODE); 58 59 *inum += 1;60 58 return r; 61 59 } … … 71 69 mfs_free_inode(struct mfs_instance *inst, uint32_t inum) 72 70 { 73 return mfs_free_bit(inst, inum - 1, BMAP_INODE);71 return mfs_free_bit(inst, inum, BMAP_INODE); 74 72 } 75 73
Note:
See TracChangeset
for help on using the changeset viewer.