Changeset 10092c9a in mainline


Ignore:
Timestamp:
2013-03-25T18:34:36Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a08005
Parents:
5b56dc7
Message:

fix compiler warnings (possible uninitialized value)

Location:
uspace/srv/fs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_fat.c

    r5b56dc7 r10092c9a  
    401401{
    402402        service_id_t service_id = nodep->idx->service_id;
    403         exfat_cluster_t lastc;
     403        exfat_cluster_t lastc = 0;
    404404        int rc;
    405405
  • uspace/srv/fs/fat/fat_fat.c

    r5b56dc7 r10092c9a  
    785785{
    786786        service_id_t service_id = nodep->idx->service_id;
    787         fat_cluster_t lastc;
     787        fat_cluster_t lastc = 0;
    788788        uint8_t fatno;
    789789        int rc;
Note: See TracChangeset for help on using the changeset viewer.