Skip to content

Commit 0b8bdce

Browse files
committed
linter: fixes
1 parent 4afd070 commit 0b8bdce

File tree

1 file changed

+2
-1
lines changed
  • applications/main/nfc/plugins/supported_cards

1 file changed

+2
-1
lines changed

applications/main/nfc/plugins/supported_cards/banapass.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ static bool banapass_parse(const NfcDevice* device, FuriString* parsed_data) {
232232
if((access_code[0] >> 4) != 3) {
233233
furi_string_cat_printf(
234234
parsed_data,
235-
"Potential clone:\nAccess Code preamble\nexpected 3, got %d\n", (access_code[0] >> 4));
235+
"Potential clone:\nAccess Code preamble\nexpected 3, got %d\n",
236+
(access_code[0] >> 4));
236237
}
237238
furi_string_cat_str(
238239
parsed_data, "::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::");

0 commit comments

Comments
 (0)