From 9458b3c726942ef4904b64eb883d3db38aadeee6 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sat, 14 Mar 2026 07:54:14 +0100 Subject: [PATCH] script: made value struct smaller --- src/l_lsl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/l_lsl.h b/src/l_lsl.h index 403c3cc..d23a23d 100644 --- a/src/l_lsl.h +++ b/src/l_lsl.h @@ -59,9 +59,10 @@ union l_lsl_value_data { /* a signle value single value * of a specific data type */ struct l_lsl_value { - enum l_lsl_data_type type; union l_lsl_value_data data; struct l_lsl_value *next; + /* enum l_lsl_data_type */ + u8 type; }; /* the garbage collector -- 2.30.2