/home/runner/work/_temp/app/code/passgen.c: In function 'state_free': /home/runner/work/_temp/app/code/passgen.c:83:24: error: passing argument 1 of 'furi_mutex_free' from incompatible pointer type [-Werror=incompatible-pointer-types] 83 | furi_mutex_free(app->mutex); | ~~~^~~~~~~ | | | FuriMutex ** In file included from /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/furi.h:14, from /home/runner/work/_temp/app/code/passgen.c:1: /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); | ~~~~~~~~~~~^~~~~~~~ In file included from /home/runner/.ufbt/current/sdk_headers/f7_sdk/furi/furi.h:5: /home/runner/work/_temp/app/code/passgen.c: In function 'render_callback': /home/runner/work/_temp/app/code/passgen.c:98:38: error: passing argument 1 of 'furi_mutex_acquire' from incompatible pointer type [-Werror=incompatible-pointer-types] 98 | furi_check(furi_mutex_acquire(app->mutex, FuriWaitForever) == FuriStatusOk); | ~~~^~~~~~~ | | | 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/passgen.c:98:5: note: in expansion of macro 'furi_check' 98 | furi_check(furi_mutex_acquire(app->mutex, FuriWaitForever) == FuriStatusOk); | ^~~~~~~~~~ /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/passgen.c:121:27: error: passing argument 1 of 'furi_mutex_release' from incompatible pointer type [-Werror=incompatible-pointer-types] 121 | furi_mutex_release(app->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/passgen.c: In function 'state_init': /home/runner/work/_temp/app/code/passgen.c:143:16: error: assignment to 'FuriMutex **' from incompatible pointer type 'FuriMutex *' [-Werror=incompatible-pointer-types] 143 | app->mutex = furi_mutex_alloc(FuriMutexTypeNormal); | ^ /home/runner/work/_temp/app/code/passgen.c: In function 'passgenapp': /home/runner/work/_temp/app/code/passgen.c:213:46: error: passing argument 1 of 'furi_mutex_acquire' from incompatible pointer type [-Werror=incompatible-pointer-types] 213 | furi_check(furi_mutex_acquire(app->mutex, FuriWaitForever) == FuriStatusOk); | ~~~^~~~~~~ | | | 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/passgen.c:213:13: note: in expansion of macro 'furi_check' 213 | furi_check(furi_mutex_acquire(app->mutex, FuriWaitForever) == FuriStatusOk); | ^~~~~~~~~~ /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/passgen.c:218:43: error: passing argument 1 of 'furi_mutex_release' from incompatible pointer type [-Werror=incompatible-pointer-types] 218 | furi_mutex_release(app->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/passgen.c:258:35: error: passing argument 1 of 'furi_mutex_release' from incompatible pointer type [-Werror=incompatible-pointer-types] 258 | furi_mutex_release(app->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); | ~~~~~~~~~~~^~~~~~~~ cc1: all warnings being treated as errors scons: *** [/home/runner/.ufbt/build/passgen/passgen.o] Error 1 More logs: https://github.com/flipperdevices/flipper-application-catalog/actions/runs/9549904293