diff options
author | harti <harti@FreeBSD.org> | 2003-10-29 15:11:26 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2003-10-29 15:11:26 +0000 |
commit | 7ff4941bd61c3c7e962615c4c28c6745b387e23c (patch) | |
tree | 133e9bab3bc8dc1be12c1a7f68b77c1974ee693a /sys | |
parent | aa5acc483c0b0938d52f4204f3801db5b80a63f7 (diff) | |
download | FreeBSD-src-7ff4941bd61c3c7e962615c4c28c6745b387e23c.zip FreeBSD-src-7ff4941bd61c3c7e962615c4c28c6745b387e23c.tar.gz |
Remove a superfluous ) from the previous commit. This was obviously
a result of the current solar storm.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/hatm/if_hatm_intr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hatm/if_hatm_intr.c b/sys/dev/hatm/if_hatm_intr.c index 088eef4..f16ba18 100644 --- a/sys/dev/hatm/if_hatm_intr.c +++ b/sys/dev/hatm/if_hatm_intr.c @@ -175,7 +175,7 @@ hatm_mbuf_page_alloc(struct hatm_softc *sc, u_int group) int err; u_int i; - if (sc->mbuf_npages == sc->mbuf_max_pages)) + if (sc->mbuf_npages == sc->mbuf_max_pages) return; if ((pg = malloc(MBUF_ALLOC_SIZE, M_DEVBUF, M_NOWAIT)) == NULL) return; |