Fix doxygen warnings for libipm

This commit is contained in:
matt335672 2023-02-13 20:44:52 +00:00
parent 54db636e76
commit b9a12257fc
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ libipm_msg_in_close_file_descriptors(struct trans *self)
/**************************************************************************//**
* Send function for a struct trans initialised with libipm_init_trans()
*
* @param trans Transport to send on
* @param self Transport to send on
* @param data pointer to data to send
* @param len Length of data to send
* @return As for write(2)
@ -80,7 +80,7 @@ libipm_trans_send_proc(struct trans *self, const char *data, int len)
/**************************************************************************//**
* Receive function for a struct trans initialised with libipm_init_trans()
*
* @param trans Transport to receive on
* @param self Transport to receive on
* @param data pointer to receive data buffer
* @param len Length of data to read
* @return As for read(2)

View File

@ -82,7 +82,7 @@ extern const char *libipm_valid_type_chars;
* If file descriptors are read from the other end, but not passed to the
* application, they must be closed to prevent file descriptor leaks
*
* @param trans Transport to close file descriptors for
* @param self Transport to close file descriptors for
*/
void
libipm_msg_in_close_file_descriptors(struct trans *self);