From 55fae189fffc86f07a3448370f0a746670819712 Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 2 May 2024 21:54:35 -0400 Subject: feat: Working and tested openssl impl & defaults --- include/nc-util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/nc-util.h b/include/nc-util.h index 6a0e149..8fb74ff 100644 --- a/include/nc-util.h +++ b/include/nc-util.h @@ -63,9 +63,9 @@ #include #if SIZE_MAX < UINT32_MAX - #define _sizet_check(x) if(x > SIZE_MAX) return CSTATUS_FAIL; + #define _overflow_check(x) if(x > SIZE_MAX) return CSTATUS_FAIL; #else - #define _sizet_check(x) + #define _overflow_check(x) #endif typedef struct memory_span_struct -- cgit