From: Robert Pengelly <robertapengelly@hotmail.com> Date: Tue, 19 Aug 2025 06:02:59 +0000 (+0100) Subject: Fix uint64_t X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=HEAD;p=sar.git Fix uint64_t --- diff --git a/stdint.h b/stdint.h index 22fe599..3ac4768 100644 --- a/stdint.h +++ b/stdint.h @@ -22,7 +22,7 @@ typedef unsigned int uint32_t; #if ULONG_MAX == 4294967295UL && !defined (NO_LONG_LONG) typedef signed long long int64_t; -typedef signed long long uint64_t; +typedef unsigned long long uint64_t; #else typedef signed long int64_t; typedef unsigned long uint64_t;