Change unsigned integer constants to macros

This commit is contained in:
Nick Chambers 2022-06-30 03:07:48 -05:00
parent a2a62554b8
commit 169e76a93b
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
#include <gargoyle/codex.h>
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;