From dd62801133cddca25d94c9c59f8ca7d0748850c6 Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Mon, 27 Oct 2025 23:26:44 -0400 Subject: small size optimization on <= 1-node NodeList --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 1f1241d..9f807c1 100644 --- a/main.c +++ b/main.c @@ -679,6 +679,6 @@ int main(int argc, const char **argv) { parse_unit(&l, &u); unit_print(&u); lex_free(&l); - fprintf(stderr, "%zu\n", sizeof(Node)); + fprintf(stderr, "node size = %zu\n", sizeof(Node)); return 0; } -- cgit v1.2.3