William A. Rowe, Jr. wrote:
#ifdef DWORD_MAX
#define APR_DWORD_MAX DWORD_MAX
#else
#define DWORD_MAX 4294967295UL
#endif

it seems we forgot to correctly sign this constant

Definitely should use correct sign, but since Windows DWORD_MAX is not defined as UL I'm inclined to just ignore DWORD_MAX, but use the possibly clearer hex notation for APR_DWORD_MAX thus

#define APR_DWORD_MAX 0xFFFFFFFFUL

Allan

Reply via email to