frontend\get_audio.c error

John Edwards via Lame-dev <[email protected]> Mon, 22 Aug 2022 12:32:11 +0100
Newsgroups gmane.comp.audio.mp3.lame
Message-ID <[email protected]>
Line 2109 currently reads:

static ssize_t lame123_read_from_file(void* handle, void* buffer, size_t 
size)

This fails to compile in MSVC with ssize_t not recognised. It should read:

static mpg123_ssize_t lame123_read_from_file(void* handle, void* buffer, 
size_t size)

as per the typedef in mpg123.h and then compiles perfectly.

Thanks

John