From 186247050f01e72c3c259c3a744f9480972b1154 Mon Sep 17 00:00:00 2001 From: AlysonStahl-NOAA <166434581+AlysonStahl-NOAA@users.noreply.github.com> Date: Thu, 31 Oct 2024 12:17:19 -0700 Subject: [PATCH] more debug --- src/decenc_png.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/decenc_png.c b/src/decenc_png.c index 1e007ed6..72a55e28 100644 --- a/src/decenc_png.c +++ b/src/decenc_png.c @@ -100,9 +100,9 @@ int g2c_dec_png(unsigned char *pngbuf, int *width, int *height, unsigned char *cout) { - g2int* width8 = (g2int)&width, height8 = (g2int)&height; + // g2int* width8 = (g2int)&width, height8 = (g2int)&height; - return dec_png(pngbuf, width8, height8, cout); + return dec_png(pngbuf, (g2int *)&width, (g2int *)&height, cout); } /**