diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2019-03-25 15:57:09 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2019-03-25 15:57:09 +0700 |
commit | 2f65bb1b0108702c52ef6c66d5c46a1b4544d445 (patch) | |
tree | 654ed9199831c5e3c0f8eb0a1c1fe9d700ad6d4a | |
parent | 9f2814283e88fa73f06dd591eed5dbc41ca4e638 (diff) |
Doxygen: fix incorrect / missing parameter description
Change-Id: Ibc63a5d4442a192efab8b5b30e0beb3545642ecc
-rw-r--r-- | src/fsm.c | 2 | ||||
-rw-r--r-- | src/gsmtap_util.c | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -395,7 +395,7 @@ void osmo_fsm_inst_change_parent(struct osmo_fsm_inst *fi, } /*! delete a given instance of a FSM - * \param[in] fsm The FSM to be un-registered and deleted + * \param[in] fi FSM instance to be un-registered and deleted */ void osmo_fsm_inst_free(struct osmo_fsm_inst *fi) { diff --git a/src/gsmtap_util.c b/src/gsmtap_util.c index 996830f6..fd0bcc96 100644 --- a/src/gsmtap_util.c +++ b/src/gsmtap_util.c @@ -368,7 +368,7 @@ static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags) } /*! Add a local sink to an existing GSMTAP source and return fd - * \param[in] gsmtap_fd file descriptor of the gsmtap socket + * \param[in] gti existing GSMTAP source * \returns file descriptor of locally bound receive socket * * In case the GSMTAP socket is connected to a local destination @@ -417,8 +417,8 @@ int gsmtap_source_add_sink(struct gsmtap_inst *gti) * * Open GSMTAP source (sending) socket, connect it to host/port, * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue - * registration. This means it is like \ref gsmtap_init2 but integrated - * with libosmocore \ref select */ + * registration. + */ struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port, int ofd_wq_mode) { |