style(9) nit. Prefer struct[space]name[space]{ to make grep searches more

in line with that we find in the rest of the tree.
This commit is contained in:
Christian S.J. Peron 2007-01-01 21:49:39 +00:00
parent 64a5046b66
commit 8d8d78c23d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165724

View File

@ -57,7 +57,7 @@
/*
* Structure of a 10Mb/s Ethernet header.
*/
struct ether_header {
struct ether_header {
u_char ether_dhost[ETHER_ADDR_LEN];
u_char ether_shost[ETHER_ADDR_LEN];
u_short ether_type;
@ -66,7 +66,7 @@ struct ether_header {
/*
* Structure of a 48-bit Ethernet address.
*/
struct ether_addr {
struct ether_addr {
u_char octet[ETHER_ADDR_LEN];
} __packed;