Changeset 00af658 in mainline
- Timestamp:
- 2012-02-26T19:45:02Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa37d6f
- Parents:
- ef144ef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkexfat/mkexfat.c
ref144ef r00af658 132 132 { 133 133 printf("Usage: mkexfat [options] <device>\n" 134 "-c, --cluster-size ## Specify the cluster size \n"135 "-s, --fs-size ## Specify the filesystem size \n");134 "-c, --cluster-size ## Specify the cluster size (Kb)\n" 135 "-s, --fs-size ## Specify the filesystem size (byte)\n"); 136 136 } 137 137 … … 739 739 740 740 case 'c': 741 cfg.cluster_size = strtol(optarg, NULL, 10) ;741 cfg.cluster_size = strtol(optarg, NULL, 10) * 1024; 742 742 if (cfg.cluster_size < 4096) { 743 743 printf(NAME ": Error, cluster size can't"
Note:
See TracChangeset
for help on using the changeset viewer.