prog.c: In function 'main':
prog.c:9:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:11:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
prog.c:12:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:14:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
prog.c:15:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:17:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
prog.c:18:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:20:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
prog.c:21:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:23:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
prog.c:24:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:26:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
prog.c:27:5: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
if (n!=0)
^~
prog.c:29:9: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
n=n/2;
^
cc1: all warnings being treated as errors
Show more...