# HG changeset patch # User Matti Hamalainen # Date 1525920788 -10800 # Node ID c1f59416d713b5b4e3b247dc085aea9702649a59 # Parent 50402c225ef429414b05560be574c2a62eefa739 Oops, non-matching function prototype committed. Fixed. diff -r 50402c225ef4 -r c1f59416d713 tools/lib64gfx.h --- a/tools/lib64gfx.h Thu May 10 05:23:02 2018 +0300 +++ b/tools/lib64gfx.h Thu May 10 05:53:08 2018 +0300 @@ -198,7 +198,7 @@ int dmC64ProbeBMP(const Uint8 *buf, const size_t len, const DMC64ImageFormat **fmt); int dmC64DecodeGenericBMP(DMC64Image *img, const Uint8 *buf, const size_t len, const DMC64ImageFormat *fmt); -int dmC64EncodeGenericBMP(Uint8 **pbuf, size_t *plen, const size_t baseOffs, const DMC64Image *img, const DMC64ImageFormat *fmt); +int dmC64EncodeGenericBMP(Uint8 **pbuf, size_t *plen, const DMC64Image *img, const DMC64ImageFormat *fmt); int dmC64ConvertBMP2Image(DMImage **pdst, const DMC64Image *src, const DMC64ImageFormat *fmt);