diff options
author | sam <sam@FreeBSD.org> | 2004-10-15 03:54:56 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2004-10-15 03:54:56 +0000 |
commit | 96cc1120918fd24ae6cefee604e22fbe157805a0 (patch) | |
tree | d069bf7bbc25f29065bc4745a29f5d016ac6b433 /sys | |
parent | 20da9f17e35c33a9f08d08d4a049bee31fd20741 (diff) | |
download | FreeBSD-src-96cc1120918fd24ae6cefee604e22fbe157805a0.zip FreeBSD-src-96cc1120918fd24ae6cefee604e22fbe157805a0.tar.gz |
add missing ';' that didn't show up with INVARIANTS enabled
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/hifn/hifn7751.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hifn/hifn7751.c b/sys/dev/hifn/hifn7751.c index be57625..2f3bebc 100644 --- a/sys/dev/hifn/hifn7751.c +++ b/sys/dev/hifn/hifn7751.c @@ -2207,7 +2207,7 @@ hifn_newsession(void *arg, u_int32_t *sidp, struct cryptoini *cri) struct cryptoini *c; struct hifn_softc *sc = arg; int mac = 0, cry = 0, sesn; - struct hifn_session *ses = NULL + struct hifn_session *ses = NULL; KASSERT(sc != NULL, ("hifn_newsession: null softc")); if (sidp == NULL || cri == NULL || sc == NULL) |