aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2022-03-06 15:24:19 +1000
committerAllan McRae <allan@archlinux.org>2022-03-06 15:24:19 +1000
commit569bcd9d2663b0549f0f18fc3c99690e33b877b0 (patch)
tree12f62b67b9a00f47a0b86a54c5c971eb8d7b13e2
parent5bbda937f1c973ca6164950d78671403a8a643b0 (diff)
Add missing parameter names to silence doxygen
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--lib/libalpm/alpm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h
index 50b5e3d2..5eaf0500 100644
--- a/lib/libalpm/alpm.h
+++ b/lib/libalpm/alpm.h
@@ -967,7 +967,7 @@ typedef union _alpm_event_t {
* Called when an event occurs
* @param ctx user-provided context
* @param event the event that occurred */
-typedef void (*alpm_cb_event)(void *ctx, alpm_event_t *);
+typedef void (*alpm_cb_event)(void *ctx, alpm_event_t *event);
/**
* Type of question.
@@ -1114,7 +1114,7 @@ typedef union _alpm_question_t {
* @param ctx user-provided context
* @param question the question being asked.
*/
-typedef void (*alpm_cb_question)(void *ctx, alpm_question_t *);
+typedef void (*alpm_cb_question)(void *ctx, alpm_question_t *question);
/** An enum over different kinds of progress alerts. */
typedef enum _alpm_progress_t {