This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/4390
[doc] Fix Doxygen 'param' direction: "in,out" rather than "inout"
Change-Id: Ic2de1341b37453f339f0eefde3f14e14640fe3bb
---
M src/gb/gprs_ns.c
M src/msgb.c
M src/select.c
3 files changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/90/4390/1
diff --git a/src/gb/gprs_ns.c b/src/gb/gprs_ns.c
index 7443a8b..11aa15b 100644
--- a/src/gb/gprs_ns.c
+++ b/src/gb/gprs_ns.c
@@ -1317,7 +1317,7 @@
/*! Process NS message independently from underlying transport layer
* \param nsi NS instance to which the data belongs
* \param[in] msg message buffer containing newly-received data
- * \param[inout] nsvc refers to the virtual connection, may be modified when
+ * \param[in,out] nsvc refers to the virtual connection, may be modified when
* processing a NS_RESET
* \returns 0 in case of success, < 0 in case of error
*
diff --git a/src/msgb.c b/src/msgb.c
index 6fcbe53..697f3a1 100644
--- a/src/msgb.c
+++ b/src/msgb.c
@@ -250,7 +250,7 @@
* the contents of the extension is undefined. The complete sub area must be a
* part of [data,tail].
*
- * \param[inout] msg The msgb object
+ * \param[in,out] msg The msgb object
* \param[in] area A pointer to the sub-area
* \param[in] old_size The old size of the sub-area
* \param[in] new_size The new size of the sub-area
diff --git a/src/select.c b/src/select.c
index 4b98b62..0e29307 100644
--- a/src/select.c
+++ b/src/select.c
@@ -48,7 +48,7 @@
static int unregistered_count;
/*! Set up an osmo-fd. Will not register it.
- * \param[inout] ofd Osmo FD to be set-up
+ * \param[in,out] ofd Osmo FD to be set-up
* \param[in] fd OS-level file descriptor number
* \param[in] when bit-mask of BSC_FD_{READ,WRITE,EXECEPT}
* \param[in] cb Call-back function to be called
--
To view, visit https://gerrit.osmocom.org/4390
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic2de1341b37453f339f0eefde3f14e14640fe3bb
Gerrit-PatchSet: 1
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>