From: SuperIlu on github Date: Sat, 8 Apr 2023 15:50:14 +0000 (+0200) Subject: config-dos.h: fix SIZEOF_CURL_OFF_T for MS-DOS/DJGPP X-Git-Tag: curl-8_1_0~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92617713b66397cd6d00661ee160207c29a91dd4;p=thirdparty%2Fcurl.git config-dos.h: fix SIZEOF_CURL_OFF_T for MS-DOS/DJGPP Fixes #10905 Closes #10910 --- diff --git a/lib/config-dos.h b/lib/config-dos.h index 8dece8aeb4..05c1a81407 100644 --- a/lib/config-dos.h +++ b/lib/config-dos.h @@ -82,7 +82,7 @@ #define SIZEOF_INT 4 #define SIZEOF_LONG 4 #define SIZEOF_SIZE_T 4 -#define SIZEOF_CURL_OFF_T 4 +#define SIZEOF_CURL_OFF_T 8 #define STDC_HEADERS 1 #define TIME_WITH_SYS_TIME 1