]> git.sesse.net Git - vlc/commitdiff
Fix variable names.
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Mon, 1 Apr 2013 21:36:15 +0000 (23:36 +0200)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Mon, 1 Apr 2013 21:36:15 +0000 (23:36 +0200)
They did not respect the naming convention (in the include files - the
implementation ones are already correct).

include/vlc/libvlc_media.h

index 5e4482ff9528e6735d54d861c3f9a397e90be537..eaa41f01890d6921f81af3fc4fe4a33aa8905635 100644 (file)
@@ -306,11 +306,11 @@ LIBVLC_API libvlc_media_t *libvlc_media_new_as_node(
  * These options must be set through libvlc_new() instead.
  *
  * \param p_md the media descriptor
- * \param ppsz_options the options (as a string)
+ * \param psz_options the options (as a string)
  */
 LIBVLC_API void libvlc_media_add_option(
                                    libvlc_media_t *p_md,
-                                   const char * ppsz_options );
+                                   const char * psz_options );
 
 /**
  * Add an option to the media with configurable flags.
@@ -326,12 +326,12 @@ LIBVLC_API void libvlc_media_add_option(
  * must be set on the whole libvlc instance instead.
  *
  * \param p_md the media descriptor
- * \param ppsz_options the options (as a string)
+ * \param psz_options the options (as a string)
  * \param i_flags the flags for this option
  */
 LIBVLC_API void libvlc_media_add_option_flag(
                                    libvlc_media_t *p_md,
-                                   const char * ppsz_options,
+                                   const char * psz_options,
                                    unsigned i_flags );