Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5a073f8

Browse filesBrowse files
committed
Address invalid meta data C Expressions package
- Name was ending with a punctuation.
1 parent 9b3f2df commit 5a073f8
Copy full SHA for 5a073f8

5 files changed

+6
-6
lines changed

‎c/cert/src/rules/EXP37-C/CallPOSIXOpenWithCorrectArgumentCount.md

Copy file name to clipboardExpand all lines: c/cert/src/rules/EXP37-C/CallPOSIXOpenWithCorrectArgumentCount.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EXP37-C: Pass the correct number of arguments to the POSIX open function.
1+
# EXP37-C: Pass the correct number of arguments to the POSIX open function
22

33
This query implements the CERT-C rule EXP37-C:
44

‎c/cert/src/rules/EXP37-C/CallPOSIXOpenWithCorrectArgumentCount.ql

Copy file name to clipboardExpand all lines: c/cert/src/rules/EXP37-C/CallPOSIXOpenWithCorrectArgumentCount.ql
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id c/cert/call-posix-open-with-correct-argument-count
3-
* @name EXP37-C: Pass the correct number of arguments to the POSIX open function.
3+
* @name EXP37-C: Pass the correct number of arguments to the POSIX open function
44
* @description A third argument should be passed to the POSIX function open() when and only when
55
* creating a new file.
66
* @kind problem

‎c/cert/src/rules/EXP37-C/DoNotCallFunctionsWithIncompatibleArguments.md

Copy file name to clipboardExpand all lines: c/cert/src/rules/EXP37-C/DoNotCallFunctionsWithIncompatibleArguments.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EXP37-C: Do not pass arguments with an incompatible count or type to a function.
1+
# EXP37-C: Do not pass arguments with an incompatible count or type to a function
22

33
This query implements the CERT-C rule EXP37-C:
44

‎c/cert/src/rules/EXP37-C/DoNotCallFunctionsWithIncompatibleArguments.ql

Copy file name to clipboardExpand all lines: c/cert/src/rules/EXP37-C/DoNotCallFunctionsWithIncompatibleArguments.ql
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @id c/cert/do-not-call-functions-with-incompatible-arguments
3-
* @name EXP37-C: Do not pass arguments with an incompatible count or type to a function.
3+
* @name EXP37-C: Do not pass arguments with an incompatible count or type to a function
44
* @description The arguments passed to a function must be compatible with the function's
55
* parameters.
66
* @kind problem

‎rule_packages/c/Expressions.json

Copy file name to clipboardExpand all lines: rule_packages/c/Expressions.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{
2323
"description": "The arguments passed to a function must be compatible with the function's parameters.",
2424
"kind": "problem",
25-
"name": "Do not pass arguments with an incompatible count or type to a function.",
25+
"name": "Do not pass arguments with an incompatible count or type to a function",
2626
"precision": "high",
2727
"severity": "error",
2828
"short_name": "DoNotCallFunctionsWithIncompatibleArguments",
@@ -33,7 +33,7 @@
3333
{
3434
"description": "A third argument should be passed to the POSIX function open() when and only when creating a new file.",
3535
"kind": "problem",
36-
"name": "Pass the correct number of arguments to the POSIX open function.",
36+
"name": "Pass the correct number of arguments to the POSIX open function",
3737
"precision": "high",
3838
"severity": "error",
3939
"short_name": "CallPOSIXOpenWithCorrectArgumentCount",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.