Code error fixes

This commit is contained in:
Florian Grousset
2022-12-30 19:43:19 -06:00
parent b66c1bc179
commit ce3cc4d305
3 changed files with 4 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ typedef struct InfraredBruteForce InfraredBruteForce;
InfraredBruteForce* infrared_brute_force_alloc();
void infrared_brute_force_free(InfraredBruteForce* brute_force);
void infrared_brute_force_reset(InfraredBruteForce* brute_force);
void infrared_brute_force_set_db_filename(InfraredBruteForce* brute_force, const char* db_filename);
bool infrared_brute_force_calculate_messages(InfraredBruteForce* brute_force);
bool infrared_brute_force_start(

View File

@@ -51,7 +51,7 @@ static void loader_menu_callback(void* _ctx, uint32_t index) {
furi_assert(application->link);
if(strcmp(application->link, "NULL") != 0) {
LoaderStatus status = loader_start(NULL, "Applications", application->link);
loader_start(NULL, "Applications", application->link);
} else {
if(!loader_lock(loader_instance)) {
FURI_LOG_E(TAG, "Loader is locked");