From: Yang Tse Date: Sat, 16 Aug 2008 03:40:25 +0000 (+0000) Subject: Oops, missed FORMAT_OFF_TU X-Git-Tag: cares-1_5_3~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0033535e216995ce8108ec50f197f8b684bdf0eb;p=curl Oops, missed FORMAT_OFF_TU --- diff --git a/lib/setup.h b/lib/setup.h index 7ae4d49c3..dcd021851 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -137,15 +137,19 @@ #if (CURL_SIZEOF_CURL_OFF_T > 4) # if (CURL_SIZEOF_LONG > 4) -# define FORMAT_OFF_T "ld" +# define FORMAT_OFF_T "ld" +# define FORMAT_OFF_TU "lu" # else -# define FORMAT_OFF_T "lld" +# define FORMAT_OFF_T "lld" +# define FORMAT_OFF_TU "llu" # endif #else # if (CURL_SIZEOF_LONG > 2) -# define FORMAT_OFF_T "ld" +# define FORMAT_OFF_T "ld" +# define FORMAT_OFF_TU "lu" # else -# define FORMAT_OFF_T "lld" +# define FORMAT_OFF_T "lld" +# define FORMAT_OFF_TU "llu" # endif #endif