better verbose messages

This commit is contained in:
tth 2020-02-26 12:06:11 +01:00
parent 7c378f1f7e
commit b35f72f9c2
1 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,8 @@ if (foo) {
} }
if (verbosity) { if (verbosity) {
fprintf(stderr, "image '%s' is %d x %d %s\n", fprintf(stderr, "%s: image '%s' is %d x %d %s\n",
__func__,
srcname, infos[0], infos[1], srcname, infos[0], infos[1],
fimg_str_type(infos[2])); fimg_str_type(infos[2]));
} }
@ -45,7 +46,8 @@ if (grisaille) {
foo = fimg_save_as_png(&fimg, dstname, 0); foo = fimg_save_as_png(&fimg, dstname, 0);
if (foo) { if (foo) {
fprintf(stderr, "saving as png '%s' -> %d\n", dstname, foo); fprintf(stderr, "%s: saving as png '%s' -> %d\n", __func__,
dstname, foo);
return -1; return -1;
} }