nfc: Change furi_assert to furi_crash for default switch cases (#1662)

* nfc: Change furi_assert to furi_crash for default switch cases
* Nfc: change MiFare Ultralight crash message

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
Yukai Li
2022-08-25 10:07:54 -06:00
committed by GitHub
parent ce7b943793
commit ab4bb55d0f
2 changed files with 5 additions and 8 deletions

View File

@@ -254,7 +254,7 @@ static void
session_register_page = 234;
break;
default:
furi_assert(false);
furi_crash("Unknown MFUL");
break;
}