aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Janosch Hofmeyr <nhofmeyr@sysmocom.de>2024-03-16 05:50:49 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2024-03-19 04:40:06 +0100
commit172dc5a72d9a625acd3786d6d6f8a6c31d130d2c (patch)
tree80c83ca5e92c9fcdd87aa21431b75bcef361ce83
parentda1796678c7b2293f73e7b2030af631a3516f584 (diff)
osmo_gtlv_cfg: fix api doc
-rw-r--r--include/osmocom/gtlv/gtlv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/gtlv/gtlv.h b/include/osmocom/gtlv/gtlv.h
index d800f71..a6728a4 100644
--- a/include/osmocom/gtlv/gtlv.h
+++ b/include/osmocom/gtlv/gtlv.h
@@ -62,9 +62,9 @@ struct osmo_gtlv_cfg {
size_t tl_min_size;
/*! Read one TL from the start of src_data.
- * \param gtlv Return the T (tag) value read from src_data in gtlv->tag.
+ * \param gtlv Return the T (tag) value read from src_data in gtlv->ti.tag.
* Return the L (length) value read from src_data in gtlv->len.
- * Return the I (instance) value read from src_data in gtlv->len; ignore if there is no I.
+ * Return the I (instance) value read from src_data in gtlv->ti.instance; ignore if there is no I.
* Return the position just after the TL in gtlv->*val. If there is V data, point at the start of the
* V data in src_data. If there is no V data, point at the byte just after the TL part in src_data.
* \param src_data Part of raw message being decoded.