Merge pull request #385 from bluca/c90

Make unity.c compatible with c90
This commit is contained in:
Mark VanderVoord
2019-01-24 16:48:07 -05:00
committed by GitHub
+2 -1
View File
@@ -1523,8 +1523,9 @@ int UnityParseOptions(int argc, char** argv)
{
UnityOptionIncludeNamed = NULL;
UnityOptionExcludeNamed = NULL;
int i;
for (int i = 1; i < argc; i++)
for (i = 1; i < argc; i++)
{
if (argv[i][0] == '-')
{