From: Peter Olsson Date: Tue, 14 Jan 2014 08:46:01 +0000 (+0100) Subject: ssize_t incorrectly defined as int on Windows x64 builds X-Git-Tag: v1.5.8~25^2~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e2d027ddfad2667df6c92c2a976fa249f39d36a;p=thirdparty%2Ffreeswitch.git ssize_t incorrectly defined as int on Windows x64 builds --- diff --git a/libs/curl/lib/config-win32.h b/libs/curl/lib/config-win32.h index 871e6bef6c..837b1a5d65 100644 --- a/libs/curl/lib/config-win32.h +++ b/libs/curl/lib/config-win32.h @@ -296,7 +296,7 @@ /* Define to 'int' if ssize_t is not an available 'typedefed' type */ #if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__) #else -#define ssize_t int +#define ssize_t intptr_t #endif /* Define to 'int' if socklen_t is not an available 'typedefed' type */