diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-07-09 22:22:42 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-07-09 22:22:42 +0000 |
commit | d57a90f7377ddd72baeeacdbf435aa2abcfef37c (patch) | |
tree | fdc4967575b6e3deddc9642a4bef8e492fb09caa /sys/dev/pci/if_bge.c | |
parent | 2d11cb24e5feeb7c4bf86c5e98901a288f632791 (diff) |
remove braces here
Diffstat (limited to 'sys/dev/pci/if_bge.c')
-rw-r--r-- | sys/dev/pci/if_bge.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 8579b16b5ce..eb408749828 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.73 2005/07/07 21:28:10 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.74 2005/07/09 22:22:41 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -765,9 +765,8 @@ bge_newbuf_std(sc, i, m, dmamap) if (m == NULL) { MGETHDR(m_new, M_DONTWAIT, MT_DATA); - if (m_new == NULL) { + if (m_new == NULL) return(ENOBUFS); - } MCLGET(m_new, M_DONTWAIT); if (!(m_new->m_flags & M_EXT)) { |