mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
patch for updated string type
This commit is contained in:
@@ -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() \
|
||||
|
||||
@@ -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() \
|
||||
|
||||
Reference in New Issue
Block a user