From 3e66e822f2b6806d365e9a3221a441741bbd881c Mon Sep 17 00:00:00 2001 From: tTh Date: Mon, 13 Feb 2023 10:58:21 +0100 Subject: [PATCH] better err msg --- funcs/pixelize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs/pixelize.c b/funcs/pixelize.c index 05b02a7..4d81d93 100644 --- a/funcs/pixelize.c +++ b/funcs/pixelize.c @@ -32,7 +32,7 @@ switch(largeur) { case 8: case 16: case 32: break; default: - fprintf(stderr, "pixeliz bad width %d\n", largeur); + fprintf(stderr, "%s bad width %d\n", __func__, largeur); return -77; }