typo in str8 compar name

This commit is contained in:
Nikita Smith
2024-10-30 15:42:39 -07:00
parent 6ffc065712
commit e1166abc63
8 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -300,7 +300,7 @@ lnk_section_table_push(LNK_SectionTable *st, String8 name, COFF_SectionFlags fla
B32 found = 0;
for (LNK_SectionNode *curr = sect_list->first, *prev = NULL; curr != NULL; prev = curr, curr = curr->next) {
LNK_Section *sect = &curr->data;
int cmp = str8_compar_case_sensetive(&sort_index, &sect->sort_index);
int cmp = str8_compar_case_sensitive(&sort_index, &sect->sort_index);
if (cmp < 0) {
if (prev == NULL) {
SLLQueuePushFront(sect_list->first, sect_list->last, sect_node);