PERFORCE change 161276 for review
Marko Zec
zec at FreeBSD.org
Tue Apr 28 21:21:08 UTC 2009
http://perforce.freebsd.org/chv.cgi?CH=161276
Change 161276 by zec at zec_tpx32 on 2009/04/28 21:20:30
Remove unnecessary curly braces - diff redux against svn.
Affected files ...
.. //depot/projects/vimage-commit2/src/sys/net/bpf.c#15 edit
Differences ...
==== //depot/projects/vimage-commit2/src/sys/net/bpf.c#15 (text+ko) ====
@@ -1432,9 +1432,8 @@
struct ifnet *theywant;
theywant = ifunit(ifr->ifr_name);
- if (theywant == NULL || theywant->if_bpf == NULL) {
+ if (theywant == NULL || theywant->if_bpf == NULL)
return (ENXIO);
- }
bp = theywant->if_bpf;
More information about the p4-projects
mailing list