aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-12-19 19:00:23 +0100
committerMax <msuraev@sysmocom.de>2018-12-20 09:52:15 +0000
commite6f63f22c5ae54c4bf884d85c7ce304955ee9533 (patch)
treea25f025836a0986ac129f8c7dc18f92fc7c6cbfe
parentaf25c37f903be0f30a0a6a4663a2892a84c79740 (diff)
TLV: fix doc copy-paste error
-rw-r--r--include/osmocom/gsm/tlv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/gsm/tlv.h b/include/osmocom/gsm/tlv.h
index 51bedd64..4c392645 100644
--- a/include/osmocom/gsm/tlv.h
+++ b/include/osmocom/gsm/tlv.h
@@ -489,7 +489,7 @@ void tlv_def_patch(struct tlv_definition *dst, const struct tlv_definition *src)
* \param[in] _tp pointer to \ref tlv_parsed.
* \param[in] tag IE tag to return.
* \param[in] min_len Minimum value length in bytes.
- * \returns struct tlv_p_entry pointer, or NULL if not present or too short.
+ * \returns const uint8_t pointer to value, or NULL if not present or too short.
*/
#define TLVP_VAL_MINLEN(_tp, tag, min_len) \
(TLVP_PRES_LEN(_tp, tag, min_len)? (_tp)->lv[tag].val : NULL)