diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-07-16 17:37:19 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-07-16 17:37:19 +0000 |
commit | 695f50cdccce686640a2eea04a2b1c170545dab9 (patch) | |
tree | c5d72734f9e91364f073c3308147682667081f52 /sys | |
parent | 5adb796109dd019666d4e14119a6e7916031c86e (diff) |
remove braces here too
Diffstat (limited to 'sys')
-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 121f587d473..16570d91045 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.75 2005/07/14 05:54:48 jsg Exp $ */ +/* $OpenBSD: if_bge.c,v 1.76 2005/07/16 17:37:18 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -830,9 +830,8 @@ bge_newbuf_jumbo(sc, i, m) /* Allocate the mbuf. */ MGETHDR(m_new, M_DONTWAIT, MT_DATA); - if (m_new == NULL) { + if (m_new == NULL) return(ENOBUFS); - } /* Allocate the jumbo buffer */ buf = bge_jalloc(sc); |