[vlc-commits] vlc_list: fix doxygen parameter name

Alexandre Janniaux git at videolan.org
Sun Jan 3 15:14:45 UTC 2021


vlc | branch: master | Alexandre Janniaux <ajanni at videolabs.io> | Thu Dec 31 11:12:59 2020 +0100| [0290c139f05bb287eca130bbce09063fcc774097] | committer: Alexandre Janniaux

vlc_list: fix doxygen parameter name

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0290c139f05bb287eca130bbce09063fcc774097
---

 include/vlc_list.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/vlc_list.h b/include/vlc_list.h
index b805ab5bf1..4b29fc757d 100644
--- a/include/vlc_list.h
+++ b/include/vlc_list.h
@@ -92,7 +92,7 @@ static inline void vlc_list_add_after(struct vlc_list *restrict node,
  * Inserts an element before another.
  *
  * \param node Node pointer of the element to insert [OUT].
- * \param prev Node pointer of the next element.
+ * \param next Node pointer of the next element.
  */
 static inline void vlc_list_add_before(struct vlc_list *restrict node,
                                        struct vlc_list *next)
@@ -143,7 +143,7 @@ static inline void vlc_list_remove(struct vlc_list *restrict node)
 /**
  * Replaces an element with another one.
  *
- * \param origin Node pointer of the element to remove from the list [IN].
+ * \param original Node pointer of the element to remove from the list [IN].
  * \param substitute Node pointer of the replacement [OUT].
  */
 static inline void vlc_list_replace(const struct vlc_list *original,



More information about the vlc-commits mailing list