mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-02 20:18:12 +00:00
typo in str8 compar name
This commit is contained in:
@@ -61,7 +61,7 @@ lnk_input_obj_compar(const void *raw_a, const void *raw_b)
|
||||
{
|
||||
const LNK_InputObj **a = (const LNK_InputObj **) raw_a;
|
||||
const LNK_InputObj **b = (const LNK_InputObj **) raw_b;
|
||||
int cmp = str8_compar_case_sensetive(&(*a)->path, &(*b)->path);
|
||||
int cmp = str8_compar_case_sensitive(&(*a)->path, &(*b)->path);
|
||||
return cmp;
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ lnk_input_obj_compar_is_before(void *raw_a, void *raw_b)
|
||||
{
|
||||
LNK_InputObj **a = raw_a;
|
||||
LNK_InputObj **b = raw_b;
|
||||
int cmp = str8_compar_case_sensetive(&(*a)->path, &(*b)->path);
|
||||
int cmp = str8_compar_case_sensitive(&(*a)->path, &(*b)->path);
|
||||
int is_before = cmp < 0;
|
||||
return is_before;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user