Fix linter path and lint code (#170)
* chage syntax checker path * fix syntax
This commit is contained in:
10
core/app.cpp
10
core/app.cpp
@@ -1,11 +1,11 @@
|
||||
#include <stdio.h>
|
||||
|
||||
extern "C" {
|
||||
#include "flipper.h"
|
||||
#include "furi.h"
|
||||
#include "log.h"
|
||||
#include "startup.h"
|
||||
#include "tty_uart.h"
|
||||
#include "flipper.h"
|
||||
#include "furi.h"
|
||||
#include "log.h"
|
||||
#include "startup.h"
|
||||
#include "tty_uart.h"
|
||||
}
|
||||
|
||||
// for testing purpose
|
||||
|
@@ -28,7 +28,7 @@ uint16_t furiac_get_task_id_by_name(const char* app_name) {
|
||||
}
|
||||
|
||||
void furiac_wait_libs(const FlipperAppLibrary* libs) {
|
||||
for(uint8_t i = 0; i < libs->count; i++){
|
||||
for(uint8_t i = 0; i < libs->count; i++) {
|
||||
uint16_t app_id = furiac_get_task_id_by_name(libs->name[i]);
|
||||
|
||||
if(app_id == INVALID_TASK_ID) {
|
||||
|
Reference in New Issue
Block a user