/in/foo.c: In function 'Left':
/in/foo.c:30:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<n;i++)
^~~
/in/foo.c:33:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return x;
^~~~~~
/in/foo.c: In function 'Max':
/in/foo.c:46:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<n;i++)
^~~
/in/foo.c:49:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return max;
^~~~~~