This commit is contained in:
tth 2022-06-28 18:49:21 +02:00
parent 27d5efb088
commit fbfde6116a
1 changed files with 5 additions and 2 deletions

View File

@ -68,8 +68,9 @@ for (foo=0; foo<NB_SLOTS; foo++)
*ps = seuil; /* give a nice value to our caller */
fprintf(stderr, "$$$$ seuil is %d\n", seuil);
#if DEBUG_LEVEL
fprintf(stderr, "%s : seuil is %d\n", __func__, seuil);
#endif
for (y=0; y<s->height; y++)
{
@ -85,7 +86,9 @@ for (y=0; y<s->height; y++)
}
}
#if DEBUG_LEVEL
fprintf(stderr, "end of %s\n", __func__);
#endif
return FULL_NUCKED;
}