Skip to content

Commit

Permalink
Merge pull request #24 from 6arms1leg/fix-type-qual
Browse files Browse the repository at this point in the history
Fix "clobbered variable" compiler warning (-Wclobbered) in example code snippet
  • Loading branch information
mvandervoord authored Feb 21, 2022
2 parents f564760 + 17ba03b commit 0858aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ transferred to the Catch block. A silly example:

```
void SillyExampleWhichPrintsZeroThroughFive(void) {
CEXCEPTION_T e;
volatile CEXCEPTION_T e;
int i;
while (i = 0; i < 6; i++) {
Try {
Expand Down

0 comments on commit 0858aba

Please sign in to comment.