<:N1:1130620612352679958><:N2:1130620354440745162>

This commit is contained in:
Willy-JL
2023-07-17 23:06:58 +01:00
parent 4286bacdb6
commit 68431aa851
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -513,7 +513,7 @@ const char* furi_thread_get_appid(FuriThreadId thread_id) {
FuriThread* thread = (FuriThread*)pvTaskGetThreadLocalStoragePointer(hTask, 0);
if(thread) {
appid = thread->appid;
} else if (hTask == xTimerGetTimerDaemonTaskHandle()) {
} else if(hTask == xTimerGetTimerDaemonTaskHandle()) {
const char* timer = furi_timer_get_current_name();
if(timer) {
appid = timer;
+1 -1
View File
@@ -15,7 +15,7 @@ typedef struct {
} TimerCallback_t;
const char* furi_timer_get_current_name() {
return current_timer_name;
return current_timer_name;
}
static void TimerCallback(TimerHandle_t hTimer) {