From da4ae7c82f60d969185a9c4df0f22dc96aa832d7 Mon Sep 17 00:00:00 2001 From: tonton th Date: Mon, 11 Jan 2021 22:00:08 +0100 Subject: [PATCH] kill useless message --- funcs/qsortrgb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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));