Earlier quoted context omitted.
I'm in favor of braces around everything, but to be honest even I will occasionally use the indent if I only expect one action. e.g. if (true) foo(); else bar(); This looks prettier to my eyes than if(true){ foo(); } else { bar(); } However, I might not be the last person to touch the code. My coworker might come later and add: if (true) foo(); else bar(); baz(); And hence the indent problem.
Btw, I suppose you wanted to add baz() after bar(). Adding it after foo(), as you did, will not compile.
Why should the inability to write basic C preclude me from being allowed to pontificate about brace style like the greats?