From f59229ba39afdce7b096e709af7e067db79cb515 Mon Sep 17 00:00:00 2001 From: fef Date: Thu, 21 Oct 2021 23:09:35 +0200 Subject: [PATCH] types: fix typo in u64 typedef This would have been a fun one to debug if i hadn't caught it right now --- include/gay/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gay/types.h b/include/gay/types.h index 78df1e9..c866e6b 100644 --- a/include/gay/types.h +++ b/include/gay/types.h @@ -28,7 +28,7 @@ typedef __int32_t i32; typedef __uint32_t u32; typedef __int64_t i64; -typedef __int64_t u64; +typedef __uint64_t u64; typedef __ssize_t isize; typedef __size_t usize;