Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlysonStahl-NOAA committed Oct 31, 2024
1 parent 6f978f0 commit 1862470
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decenc_png.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 1862470

Please sign in to comment.