This commit is contained in:
ed
2025-02-10 13:43:38 -05:00
parent 03ae07485b
commit 42b87be084
3 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -695,7 +695,7 @@ str8_list_push_frontf__arena(Arena *arena, String8List *list, char *fmt, ...) {
inline String8Node*
str8_list_push__ainfo(AllocatorInfo ainfo, String8List* list, String8 string) {
String8Node* node = alloc_array_no_zero(ainfo, String8Node, 1);
str8_list_push_node_front_set_string(list, node, string);
str8_list_push_node_set_string(list, node, string);
return(node);
}