diff options
author | 2005-07-16 17:37:18 +0000 | |
---|---|---|
committer | 2005-07-16 17:37:18 +0000 | |
commit | 37328353d02e4a370c8a7320f5eea9e3aac9499c (patch) | |
tree | b664a0f782f826edd3ba6ccb61d06c1e4df46139 | |
parent | remove __BROKEN_INDIRECT_CONFIG cruft (diff) | |
download | wireguard-openbsd-37328353d02e4a370c8a7320f5eea9e3aac9499c.tar.xz wireguard-openbsd-37328353d02e4a370c8a7320f5eea9e3aac9499c.zip |
remove braces here too
-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); |