Skip to content

Commit

Permalink
Make it an error and stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
elric1 committed Sep 21, 2023
1 parent cfa56bd commit 7998ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/apdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ handle_unimplemented(__attribute__((unused)) command_t *cmd)
{
TZ_PREAMBLE(("cmd=0x%p", cmd));

PRINTF("[ERROR] Unimplemented instruction 0x%02x\n", cmd->ins);
PRINTF("[ERROR] Unimplemented instruction 0x%02x\n", cmd->ins);
TZ_FAIL(EXC_INVALID_INS);
TZ_POSTAMBLE;
}
Expand Down

0 comments on commit 7998ec4

Please sign in to comment.