Changeset 5a9a1aaf in mainline
- Timestamp:
- 2011-07-14T11:40:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de15e4f
- Parents:
- d963742
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
rd963742 r5a9a1aaf 333 333 * size of the directory by walking the FAT. 334 334 */ 335 /* TODO uint16_t clusters to uint32_t */ 336 uint16_t clusters; 335 uint32_t clusters; 337 336 rc = fat_clusters_get(&clusters, bs, idxp->devmap_handle, nodep->firstc); 338 337 if (rc != EOK) { … … 982 981 983 982 if (FAT_IS_FAT32(bs)) { 984 uint 16_t clusters;983 uint32_t clusters; 985 984 rc = fat_clusters_get(&clusters, bs, devmap_handle, rootp->firstc); 986 985 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.