From: Lukas Krickl Date: Sat, 14 Mar 2026 06:54:14 +0000 (+0100) Subject: script: made value struct smaller X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=9458b3c726942ef4904b64eb883d3db38aadeee6;p=lrts%2F.git script: made value struct smaller --- 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