This commit is contained in:
Tonton Th 2020-01-09 01:34:07 +01:00
parent cef00ac04e
commit 3218e83688
1 changed files with 4 additions and 1 deletions

View File

@ -63,7 +63,10 @@ for (foo=0; types[foo].code; foo++) {
}
puts("\n\t-v\tincrease verbosity");
if (verbosity) fimg_print_version(1);
if (verbosity) {
fimg_print_version(1);
printf("*** compiled %s, %s\n", __DATE__, __TIME__);
}
exit(0);
}