Changeset 1433ecda in mainline for uspace/srv/fs/exfat/exfat_bitmap.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

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

    r47b2d7e3 r1433ecda  
    167167        clst = firstc;
    168168
    169         while (clst < firstc + count ) {
     169        while (clst < firstc + count) {
    170170                rc = exfat_bitmap_set_cluster(bs, service_id, clst);
    171171                if (rc != EOK) {
     
    211211                                endc++;
    212212                }
    213                 startc = endc+1;
     213                startc = endc + 1;
    214214        }
    215215        return ENOSPC;
     
    229229                clst = lastc + 1;
    230230                while (exfat_bitmap_is_free(bs, nodep->idx->service_id, clst) == EOK) {
    231                         if (clst - lastc == count){
     231                        if (clst - lastc == count) {
    232232                                return exfat_bitmap_set_clusters(bs, nodep->idx->service_id,
    233233                                    lastc + 1, count);
Note: See TracChangeset for help on using the changeset viewer.