Changeset b06414f in mainline for uspace/srv/fs/fat/fat_directory.c
- Timestamp:
- 2017-05-19T14:04:36Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e540bc87
- Parents:
- 2628642
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_directory.c
r2628642 rb06414f 155 155 { 156 156 fat_dentry_t *d = NULL; 157 uint16_t wname[FAT_LFN_NAME_ SIZE];157 uint16_t wname[FAT_LFN_NAME_LEN]; 158 158 size_t lfn_offset, lfn_size; 159 159 bool long_entry = false; … … 293 293 int long_entry_count; 294 294 uint8_t checksum; 295 uint16_t wname[FAT_LFN_NAME_ SIZE];295 uint16_t wname[FAT_LFN_NAME_LEN]; 296 296 size_t lfn_size, lfn_offset; 297 297 298 rc = str_to_utf16(wname, FAT_LFN_NAME_ SIZE, name);298 rc = str_to_utf16(wname, FAT_LFN_NAME_LEN, name); 299 299 if (rc != EOK) 300 300 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.