diff options
author | peter <peter@FreeBSD.org> | 2002-05-24 05:21:36 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-05-24 05:21:36 +0000 |
commit | 0f2b8a126a0c352f5652697a6edb79985457aaa5 (patch) | |
tree | 299e269edaa9961ae54ea8632669231c4aab4c05 /sys/dev/aha | |
parent | e35256e809e2060515c323b4394c9a4156e45202 (diff) | |
download | FreeBSD-src-0f2b8a126a0c352f5652697a6edb79985457aaa5.zip FreeBSD-src-0f2b8a126a0c352f5652697a6edb79985457aaa5.tar.gz |
Fix new gcc-3.1 warnings. I think this gets GENERIC compiling cleanly
again.
Diffstat (limited to 'sys/dev/aha')
-rw-r--r-- | sys/dev/aha/aha.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c index ec2f012..78a959b 100644 --- a/sys/dev/aha/aha.c +++ b/sys/dev/aha/aha.c @@ -257,6 +257,7 @@ aha_free(struct aha_softc *aha) case 1: bus_dma_tag_destroy(aha->mailbox_dmat); case 0: + break; } free(aha, M_DEVBUF); } |