remove extranous return

Submitted by:	phk
MFC after:	1 week
This commit is contained in:
Sam Leffler 2009-09-07 16:18:16 +00:00
parent d5c613bdb2
commit 2ef29b4c33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=196935

View File

@ -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