1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +01:00

Added "const" to one argv parameter that was missed when adding strict error checks.

This commit is contained in:
nimrodz
2015-01-20 16:11:19 +02:00
parent e5b25dfc22
commit 5f77c6380d

View File

@@ -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);
}
}