do not use fimg_describe here !

This commit is contained in:
tth 2021-06-12 13:54:35 +02:00
parent 30cb448642
commit 19c8f6aad5
1 changed files with 5 additions and 2 deletions

View File

@ -116,7 +116,7 @@ if (foo) {
} }
if (verbosity) { if (verbosity) {
fimg_describe(&fimg, srcname); // fimg_describe(&fimg, srcname);
fprintf(stderr, "normalize to %f\n", norm); fprintf(stderr, "normalize to %f\n", norm);
} }
if (norm > 0.0) { if (norm > 0.0) {
@ -140,7 +140,10 @@ puts("options:");
puts("\t-v\t\tincrease verbosity"); puts("\t-v\t\tincrease verbosity");
puts("\t-n 3.14\t\tnormalize picture"); puts("\t-n 3.14\t\tnormalize picture");
puts("\t-s N\t\tsteps on x & y"); puts("\t-s N\t\tsteps on x & y");
if (verbosity) fimg_print_version(1); if (verbosity) {
printf("*** compiled: %s at %s\n", __DATE__, __TIME__);
fimg_print_version(1);
}
exit(0); exit(0);
} }
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */