Skip to content

Commit

Permalink
fix: add missing semi-columns to TRY/CATCH macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Edouard Merle committed Apr 13, 2022
1 parent 3aadbdd commit 7562eb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/apdu/entry.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ void handle_apdu(volatile unsigned int *flags, volatile unsigned int *tx) {
FINALLY {
}
}
END_TRY
END_TRY;
}
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void app_main(void) {
FINALLY {
}
}
END_TRY
END_TRY;
}
}

Expand Down Expand Up @@ -204,7 +204,7 @@ void app_exit(void) {
FINALLY_L(exit) {
}
}
END_TRY_L(exit)
END_TRY_L(exit);
}

void coin_main() {
Expand Down

0 comments on commit 7562eb5

Please sign in to comment.