[pacman-dev] [PATCH] doxygen: fix missing parameter name
This was raising a warning during the build. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> --- lib/libalpm/alpm_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libalpm/alpm_list.h b/lib/libalpm/alpm_list.h index a0299a704..f76961d47 100644 --- a/lib/libalpm/alpm_list.h +++ b/lib/libalpm/alpm_list.h @@ -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); -- 2.30.0
On 4/2/21 7:57 am, Eli Schwartz wrote:
This was raising a warning during the build.
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> --- lib/libalpm/alpm_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libalpm/alpm_list.h b/lib/libalpm/alpm_list.h index a0299a704..f76961d47 100644 --- a/lib/libalpm/alpm_list.h +++ b/lib/libalpm/alpm_list.h @@ -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
Thanks
*/ typedef void (*alpm_list_fn_free)(void * item);
participants (2)
-
Allan McRae
-
Eli Schwartz