1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-25 09:21:36 +01:00

Merge pull request #68 from toybuilder/master

fix parameter type for runAllTests to match header (Thanks toybuilder!)
This commit is contained in:
Mark VanderVoord
2014-03-13 10:39:33 -04:00

View File

@@ -28,7 +28,7 @@ void announceTestRun(unsigned int runNumber)
UNITY_OUTPUT_CHAR('\n');
}
int UnityMain(int argc, char* argv[], void (*runAllTests)())
int UnityMain(int argc, char* argv[], void (*runAllTests)(void))
{
int result = UnityGetCommandLineOptions(argc, argv);
unsigned int r;