Browse Source

vector: fix parameter documentation in vlc_vector_reallocdata_

The first word after \param tag designates the parameter.

Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
pull/83/head
Alexandre Janniaux 8 years ago
committed by Rémi Denis-Courmont
parent
commit
9eb382ea8c
  1. 8
      include/vlc_vector.h

8
include/vlc_vector.h

@ -156,10 +156,10 @@ vlc_vector_enforce_size_t_(size_t value)
* Private.
*
* \param ptr the current data to realloc
* \param the requested capacity, in number of items
* \param the size of one item
* \pcap a pointer to the `cap` field of the vector [IN/OUT]
* \pcap a pointer to the `size` field of the vector [IN/OUT]
* \param count the requested capacity, in number of items
* \param size the size of one item
* \param pcap a pointer to the `cap` field of the vector [IN/OUT]
* \param psize a pointer to the `size` field of the vector [IN/OUT]
* \return the reallocated array, or `ptr` if reallocation failed
*/
static inline void *

Loading…
Cancel
Save