svn commit: r194681 - head/usr.sbin/wpa/ndis_events

Joerg Sonnenberger joerg at britannica.bec.de
Wed Jul 1 12:29:44 UTC 2009


On Wed, Jul 01, 2009 at 03:25:33PM +0400, Maxim Konovalov wrote:
> static void
> usage()
> {
> 	/* Insert an empty line if the function has no local variables. */
> ...
> 
> Apart from the empty line, what's wrong?

It is K&R style. It should be

static void
usage(void)
{
	...

Joerg


More information about the svn-src-all mailing list