Current News Archived News Search News Discussion Forum Old Forum Install Programs More Downloads... Troubleshooting Source Code Format Specs. Misc. Information Non-SF Stuff Links Small banner for links to this site: |
diff --git a/implode.c b/implode.c
--- a/implode.c
+++ b/implode.c
bytes_required = 0x1000;
do {
- int loaded = pWork->read_buf(&pWork->work_buff[UNCMP_OFFSET + total_loaded], &bytes_required, pWork->param);
+ int loaded = pWork->read_buf((char *)&pWork->work_buff[UNCMP_OFFSET + total_loaded], &bytes_required, pWork->param);
if (loaded == 0) {
if (total_loaded == 0 && esp20 == 0) {
diff --git a/wintypes.h b/wintypes.h
--- a/wintypes.h
+++ b/wintypes.h
#include <stdint.h>
+#ifndef WINAPI
#define WINAPI
+#endif
#define CDECL
#define __fastcall
|