Squelch Starter save debugging

Wrap another loose printf() in #ifdef DEBUG...
This commit is contained in:
Bill Kendrick 2019-09-14 12:19:00 -07:00
parent aade790b1c
commit 850a3cd853

View file

@ -13334,7 +13334,9 @@ static void do_png_embed_data(png_structp png_ptr)
/* Starter foreground */
if (img_starter)
{
#ifdef DEBUG
printf("Saving starter... %d\n", (int)(intptr_t) img_starter); //EP added (intptr_t) to avoid warning on x64
#endif
sbk_pixs = malloc(img_starter->h * img_starter->w * 4);
compressedLen = compressBound(img_starter->h * img_starter->w * 4);