Add additional fix patch for compilation error/warning and fix broken
MD5 support on 64bit.
The compilation warning actually discover a very old BUG that produced
wrong MD5 calculation on 64bit systems.
The BUG was caused by the use of unsigned long for uint32. On 64 bit
systems, unsigned long is actually 8 bytes instead of the expected 4
bytes.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
- error.h does not seem to be used (musl doesnt provide one)
fixes error/handling of FILE *stderr leading to errors like:
miax.c:217:2: error: assignment of read-only variable 'stderr'
stderr=fopen(log_output,"w");
thx to jow for pointing things out
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>