diff options
| author | HiFiPhile <[email protected]> | 2024-09-04 20:06:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-04 20:06:47 +0200 |
| commit | 3eea46056ea20aa12b73eea7c01d6c6e5b2d490a (patch) | |
| tree | 79d053674c7918e38d6317828076bb39bdf902cc /test | |
| parent | 55951b71aea46c09f27afe1640454fe43c983eec (diff) | |
| parent | 6935c663094bbba58e03c7820f4c2893fbce61a1 (diff) | |
Merge pull request #2788 from dp111/cppcheck
make function prototypes match functions( found by cppcheck)
Diffstat (limited to 'test')
| -rw-r--r-- | test/unit-test/vendor/ceedling/vendor/unity/src/unity_internals.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit-test/vendor/ceedling/vendor/unity/src/unity_internals.h b/test/unit-test/vendor/ceedling/vendor/unity/src/unity_internals.h index 2c91b6db1..d66309f96 100644 --- a/test/unit-test/vendor/ceedling/vendor/unity/src/unity_internals.h +++ b/test/unit-test/vendor/ceedling/vendor/unity/src/unity_internals.h @@ -632,14 +632,14 @@ void UnityAssertNumbersArrayWithin(const UNITY_UINT delta, const UNITY_FLAGS_T flags); #ifndef UNITY_EXCLUDE_SETJMP_H -UNITY_NORETURN void UnityFail(const char* message, const UNITY_LINE_TYPE line); -UNITY_NORETURN void UnityIgnore(const char* message, const UNITY_LINE_TYPE line); +UNITY_NORETURN void UnityFail(const char* msg, const UNITY_LINE_TYPE line); +UNITY_NORETURN void UnityIgnore(const char* msg, const UNITY_LINE_TYPE line); #else -void UnityFail(const char* message, const UNITY_LINE_TYPE line); -void UnityIgnore(const char* message, const UNITY_LINE_TYPE line); +void UnityFail(const char* msg, const UNITY_LINE_TYPE line); +void UnityIgnore(const char* msg, const UNITY_LINE_TYPE line); #endif -void UnityMessage(const char* message, const UNITY_LINE_TYPE line); +void UnityMessage(const char* msg, const UNITY_LINE_TYPE line); #ifndef UNITY_EXCLUDE_FLOAT void UnityAssertFloatsWithin(const UNITY_FLOAT delta, |
