Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-12-24 17:33:58 +0300
committerGitHub <noreply@github.com>2021-12-24 17:33:58 +0300
commit7cea359be84cb8bf72879f1264faf9b088b054f9 (patch)
treeb3db66dd1ed9265c0d61584c9b7a20bce8a0b900 /applications/dolphin
parent79e0aed1e6be9e8670595219a5e1567e92ab183b (diff)
Storage: lfs config fingerprinting. RTC: fix data collision in lock register, refactor and cleanup. (#928)
Diffstat (limited to 'applications/dolphin')
-rw-r--r--applications/dolphin/passport/passport.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/applications/dolphin/passport/passport.c b/applications/dolphin/passport/passport.c
index 4be35566..17cba7fd 100644
--- a/applications/dolphin/passport/passport.c
+++ b/applications/dolphin/passport/passport.c
@@ -103,8 +103,7 @@ int32_t passport_app(void* p) {
gui_add_view_port(gui, view_port, GuiLayerFullscreen);
view_port_update(view_port);
- osStatus_t status = osSemaphoreAcquire(semaphore, osWaitForever);
- furi_assert(status == osOK);
+ furi_check(osSemaphoreAcquire(semaphore, osWaitForever) == osOK);
gui_remove_view_port(gui, view_port);
view_port_free(view_port);