C++: Fix a FP in cpp/wrong-number-format-arguments caused by extraction error

This commit is contained in:
Calum Grant
2024-12-03 16:40:02 +00:00
parent 08859be07b
commit 99efff2217
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,6 @@
| macros.cpp:14:2:14:37 | call to printf | Format for printf (in a macro expansion) expects 4 arguments but given 3 |
| macros.cpp:21:2:21:36 | call to printf | Format for printf (in a macro expansion) expects 4 arguments but given 3 |
| macros.cpp:32:2:32:25 | call to printf | Format for printf (in a macro expansion) expects 1 arguments but given 0 |
| syntax_errors.c:8:5:8:10 | call to printf | Format for printf expects 2 arguments but given 1 |
| test.c:9:2:9:7 | call to printf | Format for printf expects 1 arguments but given 0 |
| test.c:12:2:12:7 | call to printf | Format for printf expects 2 arguments but given 1 |
| test.c:15:2:15:7 | call to printf | Format for printf expects 3 arguments but given 2 |