We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 689a662 commit 903b800Copy full SHA for 903b800
1 file changed
addons/misra.py
@@ -3338,7 +3338,7 @@ def misra_17_3(self, cfg):
3338
if token.next.next.str == "*" and \
3339
token.next.next.next.isName and token.next.next.next.valueType is not None and \
3340
token.next.next.next.valueType.pointer > 0 :
3341
- # this is a function pointer definition the tokens look like this int16_t ( * misra_8_2_p_a ) ()
+ # this is a function pointer definition the tokens look like this int16_t ( * misra_8_2_p_a ) ()
3342
# and the int16_t causes the detection as the '(' follows
3343
continue
3344
if not isKeyword(token.str) and not isStdLibId(token.str,cfg.standards.c):
0 commit comments