diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2004-12-17 15:56:59 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2004-12-17 15:56:59 +0000 |
commit | 1b640e4ba9c00e3621f171f7e86f5cb974caade9 (patch) | |
tree | 1476fc79aa8c3ab2f8906c876d45ea448bb282c7 /sys/net/bpfdesc.h | |
parent | 3d749c75763899b95734dc202ea8589d2ddf477c (diff) |
knf cleanup, convert old k&r-style functions to ansi-style for a
consistent style in sys/net/bpf.c.
ok henning@, "looks fine" canacar@
Diffstat (limited to 'sys/net/bpfdesc.h')
-rw-r--r-- | sys/net/bpfdesc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/bpfdesc.h b/sys/net/bpfdesc.h index 715cca0ee03..b9b3c2e5a1d 100644 --- a/sys/net/bpfdesc.h +++ b/sys/net/bpfdesc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bpfdesc.h,v 1.14 2004/06/22 04:04:19 canacar Exp $ */ +/* $OpenBSD: bpfdesc.h,v 1.15 2004/12/17 15:56:58 reyk Exp $ */ /* $NetBSD: bpfdesc.h,v 1.11 1995/09/27 18:30:42 thorpej Exp $ */ /* @@ -59,8 +59,8 @@ struct bpf_d { caddr_t bd_sbuf; /* store slot */ caddr_t bd_hbuf; /* hold slot */ caddr_t bd_fbuf; /* free slot */ - int bd_slen; /* current length of store buffer */ - int bd_hlen; /* current length of hold buffer */ + int bd_slen; /* current length of store buffer */ + int bd_hlen; /* current length of hold buffer */ int bd_bufsize; /* absolute length of buffers */ |