From 92617713b66397cd6d00661ee160207c29a91dd4 Mon Sep 17 00:00:00 2001 From: SuperIlu on github Date: Sat, 8 Apr 2023 17:50:14 +0200 Subject: [PATCH] config-dos.h: fix SIZEOF_CURL_OFF_T for MS-DOS/DJGPP Fixes #10905 Closes #10910 --- lib/config-dos.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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