/* Command line options */
static int cflag;
-static int verbose;
static int quiet;
static int super_only;
static int force;
sprintf(buf, "badblocks -b %d %s%s%s %d", fs->blocksize,
quiet ? "" : "-s ", (cflag > 1) ? "-w " : "",
fs->device_name, fs->super->s_blocks_count);
- if (verbose)
+ if (!quiet)
printf(_("Running command: %s\n"), buf);
f = popen(buf, "r");
if (!f) {
num_inodes = atoi(optarg);
break;
case 'v':
- verbose = 1;
+ quiet = 0;
break;
case 'q':
quiet = 1;