summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWormHeamer2025-10-27 23:56:20 -0400
committerWormHeamer2025-10-27 23:56:20 -0400
commite41dcfbbaa969a1bd86925e51a99c4c2474407ff (patch)
tree6c9c52e39ea6aa37304bc6bb4dc94fda518bc6be
parent70ee897904b708d07f3cd0d823b5dad8536a4654 (diff)
use u32 instead of unsigned in NodeList
-rw-r--r--ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ir.h b/ir.h
index d10005c..8a2abb5 100644
--- a/ir.h
+++ b/ir.h
@@ -102,7 +102,7 @@ typedef enum {
const char *node_type_name(NodeType t);
typedef struct {
- unsigned len, cap;
+ u32 len, cap;
union {
struct Node *sbo;
struct Node **data;