f3probe: --debug-block-order and --debug-keep-file

This patch just enables debugging mode when parameters
--debug-block-order and --debug-keep-file are used;
This is equivalent to automatically adding --debug.
It was an expected behavior that wasn't implemented.
This commit is contained in:
Michel Machado 2015-05-15 12:27:40 -04:00
parent 0121daf4af
commit bce2b9899b

View File

@ -163,10 +163,12 @@ static error_t parse_opt(int key, char *arg, struct argp_state *state)
argp_error(state,
"Block order must be in the interval [9, 20] or be zero");
args->block_order = ll;
args->debug = true;
break;
case 'k':
args->keep_file = true;
args->debug = true;
break;
case 'u':