/in/foo.c: In function 'FindMinCount1':
/in/foo.c:40:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0; i<n; i++)
^~~
/in/foo.c:43:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=0; i<n;i++)
^~~
/in/foo.c:43:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.c:46:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return count;
^~~~~~
/in/foo.c: In function 'FindMinCount2':
/in/foo.c:52:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0; i<n; i++)
^~~
/in/foo.c:55:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=0; i<n;i++)
^~~
/in/foo.c:55:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.c:58:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return count;
^~~~~~