diff options
Diffstat (limited to 'include/nc-util.h')
-rw-r--r-- | include/nc-util.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <stdint.h> #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 |