firmware-tools/ptgen: use portable exit codes
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
This commit is contained in:
parent
83f729dfb2
commit
498285922e
1 changed files with 3 additions and 3 deletions
|
@ -197,7 +197,7 @@ fail:
|
||||||
static void usage(char *prog)
|
static void usage(char *prog)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Usage: %s [-v] -h <heads> -s <sectors> -o <outputfile> [-a 0..4] [-l <align kB>] [[-t <type>] -p <size>...] \n", prog);
|
fprintf(stderr, "Usage: %s [-v] -h <heads> -s <sectors> -o <outputfile> [-a 0..4] [-l <align kB>] [[-t <type>] -p <size>...] \n", prog);
|
||||||
exit(1);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main (int argc, char **argv)
|
int main (int argc, char **argv)
|
||||||
|
@ -224,7 +224,7 @@ int main (int argc, char **argv)
|
||||||
case 'p':
|
case 'p':
|
||||||
if (part > 3) {
|
if (part > 3) {
|
||||||
fprintf(stderr, "Too many partitions\n");
|
fprintf(stderr, "Too many partitions\n");
|
||||||
exit(1);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
parts[part].size = to_kbytes(optarg);
|
parts[part].size = to_kbytes(optarg);
|
||||||
parts[part++].type = type;
|
parts[part++].type = type;
|
||||||
|
@ -252,5 +252,5 @@ int main (int argc, char **argv)
|
||||||
if (argc || (heads <= 0) || (sectors <= 0) || !filename)
|
if (argc || (heads <= 0) || (sectors <= 0) || !filename)
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
|
|
||||||
return gen_ptable(signature, part);
|
return gen_ptable(signature, part) ? EXIT_FAILURE : EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue