better err msg

This commit is contained in:
tTh 2023-02-13 10:58:21 +01:00
parent a449c53592
commit 3e66e822f2
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}