From: Robert Pengelly Date: Tue, 19 Aug 2025 05:04:45 +0000 (+0100) Subject: Don't forget UL for ULONG_MAX X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=8c78285400bee65c54d03163a2ffa58674d458a6;p=xar.git Don't forget UL for ULONG_MAX --- diff --git a/stdint.h b/stdint.h index 5163ae3..22fe599 100644 --- a/stdint.h +++ b/stdint.h @@ -20,7 +20,7 @@ typedef signed int int32_t; typedef unsigned int uint32_t; #endif -#if ULONG_MAX == 4294967295 && !defined (NO_LONG_LONG) +#if ULONG_MAX == 4294967295UL && !defined (NO_LONG_LONG) typedef signed long long int64_t; typedef signed long long uint64_t; #else