diff --git a/funcs/qsortrgb.c b/funcs/qsortrgb.c index 65d50b3..233cde4 100644 --- a/funcs/qsortrgb.c +++ b/funcs/qsortrgb.c @@ -41,7 +41,7 @@ if (psrc != pdst) { /* optimize or futurbug ? */ } szimg = pdst->width * pdst->height; -fprintf(stderr, "%s : %d pixels\n", __func__, szimg); +// fprintf(stderr, "%s : %d pixels\n", __func__, szimg); qsort(pdst->R, szimg, sizeof(float), compare_a); qsort(pdst->G, szimg, sizeof(float), compare_a); @@ -83,7 +83,7 @@ if (fimg_images_not_compatible(psrc, pdst)) { } szimg = pdst->width * pdst->height; -fprintf(stderr, "%s : %d pixels\n", __func__, szimg); +// fprintf(stderr, "%s : %d pixels\n", __func__, szimg); ppix = calloc(szimg, sizeof(pix));