aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-03-26 00:57:45 +0700
committerHarald Welte <laforge@gnumonks.org>2019-03-27 08:56:21 +0100
commited3a3c6f1d79286864b6701024b98a15a1475942 (patch)
treedd64e05081cb5f923eac441334d380514f84d7df
parentc761044ecb8572fb4cede10fcc64fac3db697f28 (diff)
src/rate_ctr.c: drop some incorrect \ref references
rate_ctr.c:411: warning: unable to resolve reference to `handle_group' for \ref command rate_ctr.c:208: warning: unable to resolve reference to `talloc' for \ref command Change-Id: I24a80ff6cf11ce0455529515d1ecb9900f0271a8
-rw-r--r--src/rate_ctr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rate_ctr.c b/src/rate_ctr.c
index 82fddc62..026670bd 100644
--- a/src/rate_ctr.c
+++ b/src/rate_ctr.c
@@ -206,7 +206,7 @@ static unsigned int rate_ctr_get_unused_name_idx(const char *name)
}
/*! Allocate a new group of counters according to description
- * \param[in] ctx \ref talloc context
+ * \param[in] ctx parent talloc context
* \param[in] desc Rate counter group description
* \param[in] idx Index of new counter group
*/
@@ -387,7 +387,7 @@ const struct rate_ctr *rate_ctr_get_by_name(const struct rate_ctr_group *ctrg, c
/*! Iterate over each counter in group and call function
* \param[in] ctrg counter group over which to iterate
* \param[in] handle_counter function pointer
- * \param[in] data Data to hand transparently to \ref handle_counter
+ * \param[in] data Data to hand transparently to handle_counter()
* \returns 0 on success; negative otherwise
*/
int rate_ctr_for_each_counter(struct rate_ctr_group *ctrg,
@@ -409,7 +409,7 @@ int rate_ctr_for_each_counter(struct rate_ctr_group *ctrg,
/*! Iterate over all counter groups
* \param[in] handle_group function pointer of callback function
- * \param[in] data Data to hand transparently to \ref handle_group
+ * \param[in] data Data to hand transparently to handle_group()
* \returns 0 on success; negative otherwise
*/
int rate_ctr_for_each_group(rate_ctr_group_handler_t handle_group, void *data)