a little clean

This commit is contained in:
tth 2022-04-17 04:19:06 +02:00
parent 12c3218a93
commit 27e42a0ddd
1 changed files with 11 additions and 1 deletions

View File

@ -68,11 +68,16 @@ FILE *fp;
int foo, nbre;
FimgFileHead filehead;
#if 1 // DEBUG_LEVEL
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %p '%s' %p %d )\n", __func__, fimg,
fname, pmd, notused);
#endif
if (notused) {
fprintf(stderr, "%s: notused must be 0, was %d\n", \
__func__, notused);
}
if (FIMG_TYPE_RGB != fimg->type) {
fprintf(stderr, "%s : bad type %d\n", __func__, fimg->type);
return -8;
@ -147,6 +152,11 @@ fprintf(stderr, ">>> %-25s ( %p '%s' %d )\n", __func__, fimg,
fname, notused);
#endif
if (notused) {
fprintf(stderr, "%s: notused must be 0, was %d\n", \
__func__, notused);
}
if (FIMG_TYPE_RGB != fimg->type) {
fprintf(stderr, "%s : bad type %d\n", __func__, fimg->type);
return -8;