Changeset 5a9a1aaf in mainline


Ignore:
Timestamp:
2011-07-14T11:40:57Z (13 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de15e4f
Parents:
d963742
Message:

FAT: use uint32_t for clusters count instead of uint16_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_ops.c

    rd963742 r5a9a1aaf  
    333333                 * size of the directory by walking the FAT.
    334334                 */
    335                 /* TODO uint16_t clusters to uint32_t */
    336                 uint16_t clusters;
     335                uint32_t clusters;
    337336                rc = fat_clusters_get(&clusters, bs, idxp->devmap_handle, nodep->firstc);
    338337                if (rc != EOK) {
     
    982981
    983982        if (FAT_IS_FAT32(bs)) {
    984                 uint16_t clusters;
     983                uint32_t clusters;
    985984                rc = fat_clusters_get(&clusters, bs, devmap_handle, rootp->firstc);
    986985                if (rc != EOK) {
Note: See TracChangeset for help on using the changeset viewer.