Changeset 84239b1 in mainline for uspace/app/mkmfs/mkmfs.c
- Timestamp:
- 2018-03-11T19:39:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3d47c97
- Parents:
- 850fd32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkmfs/mkmfs.c
r850fd32 r84239b1 133 133 } 134 134 135 for (c = 0, optind = 0, opt_ind = 0; c != -1;) { 135 c = 0; 136 optind = 0; 137 opt_ind = 0; 138 while (c != -1) { 136 139 c = getopt_long(argc, argv, "lh12b:i:", 137 140 long_options, &opt_ind); … … 566 569 errno_t rc; 567 570 568 sb = malloc(MFS_SUPERBLOCK_SIZE); ;571 sb = malloc(MFS_SUPERBLOCK_SIZE); 569 572 570 573 if (!sb)
Note:
See TracChangeset
for help on using the changeset viewer.