1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-27 10:14:28 +01:00

MISRA 16.4: param names match func decl & defn

parameter names should match between declaration and definition.
(MISRA 2004 rule 16.4)
This commit is contained in:
Jeremy Hannon
2018-02-10 13:15:34 -06:00
parent b4aca70fd9
commit 91a2353526
3 changed files with 7 additions and 7 deletions

View File

@@ -78,6 +78,6 @@ int UnityMain(int argc, const char* argv[], void (*runAllTests)(void));
#endif
/* You must compile with malloc replacement, as defined in unity_fixture_malloc_overrides.h */
void UnityMalloc_MakeMallocFailAfterCount(int count);
void UnityMalloc_MakeMallocFailAfterCount(int countdown);
#endif /* UNITY_FIXTURE_H_ */