mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-25 17:31:36 +01:00
Merge pull request #96 from trianglee/master
Added "const" to one argv parameter that was missed when adding strict error checks. (thanks, trianglee!)
This commit is contained in:
@@ -6,7 +6,7 @@ static void RunAllTests(void)
|
||||
RUN_TEST_GROUP(ProductionCode2);
|
||||
}
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
int main(int argc, const char * argv[])
|
||||
{
|
||||
return UnityMain(argc, argv, RunAllTests);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user