/home/runner/work/_temp/app/code/doom.c: In function 'doom_state_init': /home/runner/work/_temp/app/code/doom.c:834:47: error: assignment to 'FuriMutex **' from incompatible pointer type 'FuriMutex *' [-Werror=incompatible-pointer-types] 834 | plugin_state->music_instance->model_mutex = furi_mutex_alloc(FuriMutexTypeNormal); | ^ /home/runner/work/_temp/app/code/doom.c: In function 'doom_app': /home/runner/work/_temp/app/code/doom.c:972:26: error: passing argument 1 of 'furi_timer_alloc' from incompatible pointer type [-Werror=incompatible-pointer-types] 972 | furi_timer_alloc(doom_game_update_timer_callback, FuriTimerTypePeriodic, event_queue); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | void (*)(FuriMessageQueue *) {aka void (*)(struct FuriMessageQueue *)} In file included from /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/furi.h:20, from /home/runner/work/_temp/app/code/doom.c:1: /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/timer.h:30:47: note: expected 'FuriTimerCallback' {aka 'void (*)(void *)'} but argument is of type 'void (*)(FuriMessageQueue *)' {aka 'void (*)(struct FuriMessageQueue *)'} 30 | FuriTimer* furi_timer_alloc(FuriTimerCallback func, FuriTimerType type, void* context); | ~~~~~~~~~~~~~~~~~~^~~~ /home/runner/work/_temp/app/code/doom.c:977:45: error: passing argument 2 of 'view_port_input_callback_set' from incompatible pointer type [-Werror=incompatible-pointer-types] 977 | view_port_input_callback_set(view_port, input_callback, event_queue); | ^~~~~~~~~~~~~~ | | | void (*)(InputEvent *, FuriMessageQueue *) {aka void (*)(InputEvent *, struct FuriMessageQueue *)} In file included from /home/runner/.ufbt/current/sdk_headers/f7_sdk/applications/services/gui/gui.h:8, from /home/runner/work/_temp/app/code/doom.c:2: /home/runner/.ufbt/current/sdk_headers/f7_sdk/applications/services/gui/view_port.h:89:27: note: expected 'ViewPortInputCallback' {aka 'void (*)(InputEvent *, void *)'} but argument is of type 'void (*)(InputEvent *, FuriMessageQueue *)' {aka 'void (*)(InputEvent *, struct FuriMessageQueue *)'} 89 | ViewPortInputCallback callback, | ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~ In file included from /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/furi.h:5: /home/runner/work/_temp/app/code/doom.c:999:60: error: passing argument 1 of 'furi_mutex_acquire' from incompatible pointer type [-Werror=incompatible-pointer-types] 999 | furi_mutex_acquire(plugin_state->music_instance->model_mutex, FuriWaitForever) == | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ | | | FuriMutex ** /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/check.h:64:14: note: in definition of macro '__furi_check' 64 | if(!(__e)) { \ | ^~~ /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/check.h:74:5: note: in expansion of macro 'M_APPLY' 74 | M_APPLY(__furi_check, M_DEFAULT_ARGS(2, (__FURI_CHECK_MESSAGE_FLAG), __VA_ARGS__)) | ^~~~~~~ /home/runner/.ufbt/current/sdk_headers/f7_sdk/lib/mlib/m-core.h:1806:30: note: in expansion of macro 'M_DEFAULT_ARGS_EVAL' 1806 | #define M_DEFAULT_ARGS( ...) M_DEFAULT_ARGS_EVAL(M_DEFAULT_ARGS2(__VA_ARGS__)) | ^~~~~~~~~~~~~~~~~~~ /home/runner/.ufbt/current/sdk_headers/f7_sdk/lib/mlib/m-core.h:1806:50: note: in expansion of macro 'M_DEFAULT_ARGS2' 1806 | #define M_DEFAULT_ARGS( ...) M_DEFAULT_ARGS_EVAL(M_DEFAULT_ARGS2(__VA_ARGS__)) | ^~~~~~~~~~~~~~~ /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/check.h:74:27: note: in expansion of macro 'M_DEFAULT_ARGS' 74 | M_APPLY(__furi_check, M_DEFAULT_ARGS(2, (__FURI_CHECK_MESSAGE_FLAG), __VA_ARGS__)) | ^~~~~~~~~~~~~~ /home/runner/work/_temp/app/code/doom.c:998:9: note: in expansion of macro 'furi_check' 998 | furi_check( | ^~~~~~~~~~ In file included from /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/furi.h:14: /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/mutex.h:42:42: note: expected 'FuriMutex *' but argument is of type 'FuriMutex **' 42 | FuriStatus furi_mutex_acquire(FuriMutex* instance, uint32_t timeout); | ~~~~~~~~~~~^~~~~~~~ /home/runner/work/_temp/app/code/doom.c:1009:72: error: passing argument 1 of 'furi_mutex_release' from incompatible pointer type [-Werror=incompatible-pointer-types] 1009 | furi_mutex_release(plugin_state->music_instance->model_mutex); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ | | | FuriMutex ** /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/mutex.h:50:42: note: expected 'FuriMutex *' but argument is of type 'FuriMutex **' 50 | FuriStatus furi_mutex_release(FuriMutex* instance); | ~~~~~~~~~~~^~~~~~~~ /home/runner/work/_temp/app/code/doom.c:1020:72: error: passing argument 1 of 'furi_mutex_release' from incompatible pointer type [-Werror=incompatible-pointer-types] 1020 | furi_mutex_release(plugin_state->music_instance->model_mutex); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ | | | FuriMutex ** /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/mutex.h:50:42: note: expected 'FuriMutex *' but argument is of type 'FuriMutex **' 50 | FuriStatus furi_mutex_release(FuriMutex* instance); | ~~~~~~~~~~~^~~~~~~~ /home/runner/work/_temp/app/code/doom.c:1083:56: error: passing argument 1 of 'furi_mutex_release' from incompatible pointer type [-Werror=incompatible-pointer-types] 1083 | furi_mutex_release(plugin_state->music_instance->model_mutex); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ | | | FuriMutex ** /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/mutex.h:50:42: note: expected 'FuriMutex *' but argument is of type 'FuriMutex **' 50 | FuriStatus furi_mutex_release(FuriMutex* instance); | ~~~~~~~~~~~^~~~~~~~ /home/runner/work/_temp/app/code/doom.c:1091:49: error: passing argument 1 of 'furi_mutex_free' from incompatible pointer type [-Werror=incompatible-pointer-types] 1091 | furi_mutex_free(plugin_state->music_instance->model_mutex); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ | | | FuriMutex ** /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/core/mutex.h:33:33: note: expected 'FuriMutex *' but argument is of type 'FuriMutex **' 33 | void furi_mutex_free(FuriMutex* instance); | ~~~~~~~~~~~^~~~~~~~ cc1: all warnings being treated as errors scons: *** [/home/runner/.ufbt/build/doom/doom.o] Error 1 More logs: https://github.com/flipperdevices/flipper-application-catalog/actions/runs/9549913424