From 169e76a93bc8ace88fdabeae82b14617584af269 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Thu, 30 Jun 2022 03:07:48 -0500 Subject: [PATCH] Change unsigned integer constants to macros --- include/gargoyle/delusion.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gargoyle/delusion.h b/include/gargoyle/delusion.h index cd94e2f..4f61508 100644 --- a/include/gargoyle/delusion.h +++ b/include/gargoyle/delusion.h @@ -3,8 +3,8 @@ #include -static const uint8_t GARGOYLE_MAX_ERR_SZ = 255; -static const uint8_t GARGOYLE_MAX_FUNC_SZ = 32; +#define GARGOYLE_MAX_ERR_SZ 256 +#define GARGOYLE_MAX_FUNC_SZ 33 struct gargoyle_err { gargoyle_err_type code;