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:
@@ -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] == '-')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user