Skip to content

Commit

Permalink
fixed the pnglite fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Choupom authored and oy committed May 3, 2011
1 parent f1df704 commit 694be7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/external/pnglite/pnglite.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ int png_init(png_alloc_t pngalloc, png_free_t pngfree)
if(pngalloc)
png_alloc = pngalloc;
else
png_alloc = &(png_alloc_t)malloc;
png_alloc = (png_alloc_t)&malloc;

if(pngfree)
png_free = pngfree;
Expand Down

0 comments on commit 694be7d

Please sign in to comment.