From c930dd833b170aa1330a801860ad8a4edededf63 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Tue, 4 Sep 2001 10:00:20 +0000 Subject: [PATCH] Fix style bug from rev 1.20 in `struct foo' definition example to match the `struct foo' definition example from rev 1.1. (proper CSRG style was also verified with /sys/sys/{bio,file}.h) --- share/man/man9/style.9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/man/man9/style.9 b/share/man/man9/style.9 index 22ce8ae74afe..fcb23c68ada8 100644 --- a/share/man/man9/style.9 +++ b/share/man/man9/style.9 @@ -186,7 +186,7 @@ macros rather than rolling your own lists, whenever possible. Thus, the previous example would be better written: .Bd -literal #include -struct foo { +struct foo { LIST_ENTRY(foo) link; /* Queue macro glue for foo lists */ struct mumble amumble; /* Comment for mumble */ int bar;