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

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

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] == '-')
{