Utilisation de -V/--verbose pour l'affichage verbeux
This commit is contained in:
parent
2b3162cd66
commit
07babd3027
|
@ -12,7 +12,7 @@ static char doc[] = "Compresse ou décompresse des fichiers en "
|
||||||
static char args_doc[] = "FICHIER...";
|
static char args_doc[] = "FICHIER...";
|
||||||
static struct argp_option options[] = {
|
static struct argp_option options[] = {
|
||||||
{
|
{
|
||||||
"debug", 'd', 0, 0,
|
"verbose", 'V', 0, 0,
|
||||||
"Afficher des informations de débogage sur la compression"
|
"Afficher des informations de débogage sur la compression"
|
||||||
},
|
},
|
||||||
{0}
|
{0}
|
||||||
|
@ -35,7 +35,7 @@ static error_t parse_opt(int key, char *arg, struct argp_state *state) {
|
||||||
Args *args = state->input;
|
Args *args = state->input;
|
||||||
|
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case 'd':
|
case 'V':
|
||||||
args->verbose = TRUE;
|
args->verbose = TRUE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue