From d57a90f7377ddd72baeeacdbf435aa2abcfef37c Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sat, 9 Jul 2005 22:22:42 +0000 Subject: remove braces here --- sys/dev/pci/if_bge.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/dev/pci/if_bge.c') 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)) { -- cgit v1.2.3