Date: Tue, 04 Sep 2001 05:39:19 -0400 From: Jake Burkholder <jake@k7.locore.ca> To: "David E. O'Brien" <obrien@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sparc64/include frame.h Message-ID: <200109040939.f849dJG79319@k7.locore.ca> In-Reply-To: Message from "David E. O'Brien" <obrien@FreeBSD.org> of "Tue, 04 Sep 2001 02:23:23 PDT." <200109040923.f849NNW31090@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
> obrien 2001/09/04 02:23:23 PDT
>
> Modified files:
> sys/sparc64/include frame.h
> Log:
> style(9) the structure names
>
> Revision Changes Path
> 1.7 +7 -7 src/sys/sparc64/include/frame.h
>
This is wrong. Style(9) wants a tab after the struct keyword.
#include <sys/queue.h>
struct foo {
^^^^^^^^
LIST_ENTRY(foo) link; /* Queue macro glue for foo lists */
struct mumble amumble; /* Comment for mumble */
int bar;
};
LIST_HEAD(, foo) foohead; /* Head of global foo list */
Please back it out, and run things like this by me in the future.
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200109040939.f849dJG79319>
