Utilisation de -V/--verbose pour l'affichage verbeux

This commit is contained in:
Mattéo Delabre 2016-10-22 03:02:52 +02:00
parent 2b3162cd66
commit 07babd3027
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ static char doc[] = "Compresse ou décompresse des fichiers en "
static char args_doc[] = "FICHIER...";
static struct argp_option options[] = {
{
"debug", 'd', 0, 0,
"verbose", 'V', 0, 0,
"Afficher des informations de débogage sur la compression"
},
{0}
@ -35,7 +35,7 @@ static error_t parse_opt(int key, char *arg, struct argp_state *state) {
Args *args = state->input;
switch (key) {
case 'd':
case 'V':
args->verbose = TRUE;
break;