diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-30 11:11:18 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-30 11:11:18 +0530 |
commit | e65f2c8cd6aab5d4bdc1da09a09dc4da969ec225 (patch) | |
tree | 976dfd94a5bd254668829aaddfab396b6f84e92e /include/lexer.h | |
parent | f2c37f482417e978a8db8bff48b46c2ebbfd722e (diff) |
lexer: contentfor_operand_t->length should be size_t
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lexer.h b/include/lexer.h index 9626e64..f482f09 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -49,7 +49,7 @@ typedef struct { typedef struct { char *key; char *content; - unsigned int length; + size_t length; } contentfor_operand_t; typedef struct { |