doxygen: fix missing parameter name

This was raising a warning during the build.

Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Eli Schwartz 2021-02-03 16:57:33 -05:00 committed by Allan McRae
parent 3a23abb2ec
commit 2b8d00b799

View file

@ -61,7 +61,7 @@ typedef struct __alpm_list_t {
#define FREELIST(p) do { alpm_list_free_inner(p, free); alpm_list_free(p); p = NULL; } while(0)
/** item deallocation callback.
* @param the item to free
* @param item the item to free
*/
typedef void (*alpm_list_fn_free)(void * item);