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
@@ -6,7 +6,7 @@ lnk_export_name_compar(const void *a_, const void *b_)
{
const LNK_Export *a = (const LNK_Export *)a_;
const LNK_Export *b = (const LNK_Export *)b_;
return str8_compar_case_sensetive(&a->name, &b->name);
return str8_compar_case_sensitive(&a->name, &b->name);
}
int