Changeset 5b16912 in mainline for uspace/lib/ext4/libext4_directory_index.c
- Timestamp:
- 2012-04-07T13:22:50Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce6de59
- Parents:
- c6a44a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_directory_index.c
rc6a44a3 r5b16912 523 523 } 524 524 525 qsort(sort_array, idx, sizeof(ext4_dx_sort_entry_t), ext4_directory_dx_entry_comparator, NULL); 525 qsort(sort_array, idx, sizeof(ext4_dx_sort_entry_t), 526 ext4_directory_dx_entry_comparator, NULL); 526 527 527 528 uint32_t new_fblock; 528 529 uint32_t new_iblock; 529 rc = ext4_ directory_append_block(inode_ref, &new_fblock, &new_iblock);530 rc = ext4_filesystem_append_inode_block(inode_ref, &new_fblock, &new_iblock); 530 531 if (rc != EOK) { 531 532 free(sort_array); … … 651 652 uint32_t new_fblock; 652 653 uint32_t new_iblock; 653 rc = ext4_directory_append_block(inode_ref, &new_fblock, &new_iblock); 654 rc = ext4_filesystem_append_inode_block( 655 inode_ref, &new_fblock, &new_iblock); 654 656 if (rc != EOK) { 655 657 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.