diff options
author | sam <sam@FreeBSD.org> | 2009-09-07 16:18:16 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2009-09-07 16:18:16 +0000 |
commit | 7b97612b07db3b51448e286a27728cdfeab64b1c (patch) | |
tree | 692e825ab60cdffada24efee7d990287a7865bb4 /sys/dev/ath/ah_osdep.c | |
parent | e9b07958480e9b4c25bd9c1b4f7f26891950ac26 (diff) | |
download | FreeBSD-src-7b97612b07db3b51448e286a27728cdfeab64b1c.zip FreeBSD-src-7b97612b07db3b51448e286a27728cdfeab64b1c.tar.gz |
remove extranous return
Submitted by: phk
MFC after: 1 week
Diffstat (limited to 'sys/dev/ath/ah_osdep.c')
-rw-r--r-- | sys/dev/ath/ah_osdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/ah_osdep.c b/sys/dev/ath/ah_osdep.c index 7ba7817..6b11b21 100644 --- a/sys/dev/ath/ah_osdep.c +++ b/sys/dev/ath/ah_osdep.c @@ -110,7 +110,7 @@ ath_hal_malloc(size_t size) void ath_hal_free(void* p) { - return free(p, M_ATH_HAL); + free(p, M_ATH_HAL); } void |