patch for updated string type

This commit is contained in:
Dig
2022-10-22 16:39:11 +01:00
parent 1f9ad81356
commit 38d0bc5a5f
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ static int ArchiveFile_t_cmp(const ArchiveFile_t* a, const ArchiveFile_t* b) {
return -1;
}
return string_cmp(a->path, b->path);
return furi_string_cmp(a->path, b->path);
}
#define M_OPL_ArchiveFile_t() \

View File

@@ -81,7 +81,7 @@ static int BrowserItem_t_cmp(const BrowserItem_t* a, const BrowserItem_t* b) {
return -1;
}
return string_cmp(a->path, b->path);
return furi_string_cmp(a->path, b->path);
}
#define M_OPL_BrowserItem_t() \