/in/foo.c: In function 'PrimeCount1':
/in/foo.c:42:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(x=2; x<a[i]; x++)
^~~
/in/foo.c:45:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
if(x>=a[i] && a[i]!=1)
^~
/in/foo.c: In function 'PrimeCount2':
/in/foo.c:56:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(x=2; x<b[i]; x++)
^~~
/in/foo.c:59:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
if(x>=b[i] && b[i]!=1)
^~