diff --git a/lib/fimg-file.c b/lib/fimg-file.c index 4c82ffd..0811b53 100644 --- a/lib/fimg-file.c +++ b/lib/fimg-file.c @@ -251,7 +251,7 @@ if ( (filehead.w != where->width) || /* XXX preparer la gestion des metadata */ if ('a' == filehead.magic[4]) { - fprintf(stderr,"****** %s have metadata\n", fname); + if (verbosity > 1) fprintf(stderr,"****** %s have metadata\n", fname); foo = fseek(fp, (long)sizeof(FimgMetaData), SEEK_CUR); if (foo) { fprintf(stderr, "%s: seek error\n", __func__); @@ -327,8 +327,8 @@ if (foo) { /* * Oh boy, we have to skeep the metadata chunck */ -if ('a' == filehead.magic[4]) { - if (verbosity) +if ('a' == filehead.magic[4]) { + if (verbosity > 1) { fprintf(stderr, "%s: %s has metadata\n", __func__, fname); } foo = fseek(fp, (long)sizeof(FimgMetaData), SEEK_CUR); if (foo) {