Changeset 7c3fb9b in mainline for uspace/app/mkexfat/mkexfat.c


Ignore:
Timestamp:
2018-05-17T08:29:01Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ff23ff
Parents:
fac0ac7
git-author:
Jiri Svoboda <jiri@…> (2018-05-16 17:28:17)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-17 08:29:01)
Message:

Fix block comment formatting (ccheck).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkexfat/mkexfat.c

    rfac0ac7 r7c3fb9b  
    158158        cfg->cluster_size = DEFAULT_CLUSTER_SIZE;
    159159
    160         /* Compute the required cluster size to index
     160        /*
     161         * Compute the required cluster size to index
    161162         * the entire storage device and to keep the FAT
    162163         * size less or equal to 64 Mb.
     
    179180            cfg->fat_sector_count, cfg->cluster_size / cfg->sector_size);
    180181
    181         /* Subtract the FAT space from the total
     182        /*
     183         * Subtract the FAT space from the total
    182184         * number of available clusters.
    183185         */
     
    369371        }
    370372
    371         /* The OEM record is not yet used
     373        /*
     374         * The OEM record is not yet used
    372375         * by the official exFAT implementation, we'll fill
    373376         * it with zeroes.
     
    467470
    468471        if (cur_cls == fat_entries) {
    469                 /* This sector is full, there are no more free entries,
     472                /*
     473                 * This sector is full, there are no more free entries,
    470474                 * commit the changes to disk and restart from the next
    471475                 * sector.
     
    477481                goto loop;
    478482        } else if (ncls == 1) {
    479                 /* This is the last cluster of this chain, mark it
     483                /*
     484                 * This is the last cluster of this chain, mark it
    480485                 * with EOF.
    481486                 */
     
    571576
    572577                if (table_size < cfg->sector_size) {
    573                         /* Reset the content of the unused part
     578                        /*
     579                         * Reset the content of the unused part
    574580                         * of the last sector.
    575581                         */
     
    656662                goto exit;
    657663
    658         /* Fill the content of the sectors not used by the
     664        /*
     665         * Fill the content of the sectors not used by the
    659666         * root directory with zeroes.
    660667         */
Note: See TracChangeset for help on using the changeset viewer.