At 05:50 PM 9/28/2004, Jeff Trawick wrote:
>>   -#define DWORD_MAX 4294967295
>>   +#define APR_DWORD_MAX 4294967295
>
>or
>
>#define APR_DWORD_MAX (DWORD_MAX)
>
>since this is a platform which defines it?

or...

#ifdef DWORD_MAX
#define APR_DWORD_MAX DWORD_MAX
#else
#define DWORD_MAX 4294967295UL
#endif

it seems we forgot to correctly sign this constant

Reply via email to