projects
/
lrts
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba8af57
)
script: made value struct smaller
author
Lukas Krickl
<lukas@krickl.dev>
Sat, 14 Mar 2026 06:54:14 +0000
(07:54 +0100)
committer
Lukas Krickl
<lukas@krickl.dev>
Sat, 14 Mar 2026 06:54:14 +0000
(07:54 +0100)
src/l_lsl.h
patch
|
blob
|
history
diff --git
a/src/l_lsl.h
b/src/l_lsl.h
index 403c3ccb2082a15960fa06a035886c54b2446b4c..d23a23d16915ab8b793607fe2b3ba0d3cb68f271 100644
(file)
--- 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