On Mon, 20 Dec 2010 18:30:36 +0300 Anonymous <[email protected]> wrote:
> "David E. O'Brien" <[email protected]> writes: > > + if (av[0]) > > + for (k = 0 ; av[k] ; ++k) > > + fprintf(fscript, "%s%s", k ? " " : "", > > av[k]); > > + fprintf(fscript, "\r\n"); > > + > > An indent bug? 2nd fprintf() call is not under if(av[0]). But the 2nd printf() call isn't in the scope of the if statement. Personally I prefer braces if a statement is longer than 1 line, even if not strictly required. -- Bruce Cran _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
