1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 01:23:49 +01:00

sys/net: fix non matching arguments in doc

This commit is contained in:
Alexandre Abadie 2022-01-03 09:52:57 +01:00
parent c78a67422a
commit f27cccd0cc
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ typedef enum {
* The registered callback function is executed in the context of the dedicated
* standalone RD endpoint's thread.
*
* @param[in] t type of event
* @param[in] event type of event
*/
typedef void(*cord_ep_standalone_cb_t)(cord_ep_standalone_event_t event);

View File

@ -154,7 +154,7 @@ typedef struct sock_udp sock_udp_t; /**< forward declare for async */
* @param[in] arg Argument provided when setting the callback using
* @ref sock_udp_set_cb(). May be NULL.
*/
typedef void (*sock_udp_cb_t)(sock_udp_t *sock, sock_async_flags_t type,
typedef void (*sock_udp_cb_t)(sock_udp_t *sock, sock_async_flags_t flags,
void *arg);
#endif /* defined(MODULE_SOCK_UDP) || defined(DOXYGEN) */