no more useless message

This commit is contained in:
tonton th 2020-12-18 12:16:24 +01:00
parent e3369b8bf6
commit 77300f77ba
1 changed files with 3 additions and 2 deletions

View File

@ -29,7 +29,8 @@ int Os, Od; /* offset of lines */
int wsz;
int ya, y2;
fprintf(stderr, "%s: image width is %d\n", __func__, pimg->width);
if (verbosity) fprintf(stderr, "%s: image width is %d\n",
__func__, pimg->width);
rowpix = calloc(pimg->width, sizeof(float));
if (NULL==rowpix) {
@ -38,7 +39,7 @@ if (NULL==rowpix) {
}
wsz = pimg->width * sizeof(float);
fprintf(stderr, "%s: wsx = %d\n", __func__, wsz);
if (verbosity) fprintf(stderr, "%s: wsx = %d\n", __func__, wsz);
for (ya=0; ya<pimg->height/2; ya++) {