-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #456 from jketema/typo-fix
Fix typo in one of the alert messages from RULE-8-2
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
c/misra/test/rules/RULE-8-2/FunctionTypesNotInPrototypeForm.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
| test.c:3:6:3:7 | f1 | Function f1 declares parameter that is unnamed. | | ||
| test.c:4:6:4:7 | f2 | Function f2 does not specifiy void for no parameters present. | | ||
| test.c:5:6:5:7 | f3 | Function f3 does not specifiy void for no parameters present. | | ||
| test.c:4:6:4:7 | f2 | Function f2 does not specify void for no parameters present. | | ||
| test.c:5:6:5:7 | f3 | Function f3 does not specify void for no parameters present. | | ||
| test.c:7:5:7:6 | f5 | Function f5 declares parameter in unsupported declaration list. | |
2 changes: 1 addition & 1 deletion
2
c/misra/test/rules/RULE-8-2/FunctionTypesNotInPrototypeForm.expected.clang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
| test.c:3:6:3:7 | f1 | Function f1 declares parameter that is unnamed. | | ||
| test.c:4:6:4:7 | f2 | Function f2 does not specifiy void for no parameters present. | | ||
| test.c:4:6:4:7 | f2 | Function f2 does not specify void for no parameters present. | | ||
| test.c:7:5:7:6 | f5 | Function f5 declares parameter in unsupported declaration list. | |