From d81ac614683e3de9b21b82c4dcdb1eb81a4f849a Mon Sep 17 00:00:00 2001 From: Wolfram Sang Date: Sat, 20 Oct 2012 17:12:56 +0200 Subject: ubiformat: really skip some messages when quiet Both logic (only print when not quiet) and the indentation suggest that the braces around the block have been forgotten. Signed-off-by: Wolfram Sang Signed-off-by: Artem Bityutskiy --- ubi-utils/ubiformat.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ubi-utils') diff --git a/ubi-utils/ubiformat.c b/ubi-utils/ubiformat.c index a265a9a..8f9bd3a 100644 --- a/ubi-utils/ubiformat.c +++ b/ubi-utils/ubiformat.c @@ -875,11 +875,12 @@ int main(int argc, char * const argv[]) * erase counters. */ if (percent < 50) { - if (!args.yes || !args.quiet) + if (!args.yes || !args.quiet) { warnmsg("only %d of %d eraseblocks have valid erase counter", si->ok_cnt, si->good_cnt); normsg("erase counter 0 will be used for all eraseblocks"); normsg("note, arbitrary erase counter value may be specified using -e option"); + } if (!args.yes && want_exit()) { if (args.yes && !args.quiet) printf("yes\n"); @@ -888,11 +889,12 @@ int main(int argc, char * const argv[]) args.ec = 0; args.override_ec = 1; } else if (percent < 95) { - if (!args.yes || !args.quiet) + if (!args.yes || !args.quiet) { warnmsg("only %d of %d eraseblocks have valid erase counter", si->ok_cnt, si->good_cnt); normsg("mean erase counter %lld will be used for the rest of eraseblock", si->mean_ec); + } if (!args.yes && want_exit()) { if (args.yes && !args.quiet) printf("yes\n"); -- cgit v1.2.3