aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-30 11:11:18 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-30 11:11:18 +0530
commite65f2c8cd6aab5d4bdc1da09a09dc4da969ec225 (patch)
tree976dfd94a5bd254668829aaddfab396b6f84e92e
parentf2c37f482417e978a8db8bff48b46c2ebbfd722e (diff)
lexer: contentfor_operand_t->length should be size_t
-rw-r--r--include/lexer.h2
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 {