Changeset e65e406 in mainline for uspace/srv/fs/fat/fat_directory.c
- Timestamp:
- 2011-06-12T14:45:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6aca755
- Parents:
- 17fa0280
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_directory.c
r17fa0280 re65e406 118 118 (di->checksum == FAT_LFN_CHKSUM(d))) { 119 119 /* Right order! */ 120 fat_lfn_copy_entry(d, di->lfn_utf16, &di->lfn_offset); 120 di->lfn_offset = fat_lfn_copy_entry(d, di->lfn_utf16, 121 di->lfn_offset); 121 122 } else { 122 123 /* Something wrong with order. Skip this long entries set */ … … 133 134 (FAT_LFN_COUNT(d) - 1)) + fat_lfn_size(d); 134 135 di->lfn_offset = di->lfn_size; 135 fat_lfn_copy_entry(d, di->lfn_utf16, &di->lfn_offset); 136 di->lfn_offset = fat_lfn_copy_entry(d, di->lfn_utf16, 137 di->lfn_offset); 136 138 di->checksum = FAT_LFN_CHKSUM(d); 137 139 }
Note:
See TracChangeset
for help on using the changeset viewer.