1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-27 04:21:53 +02:00

Cosmetics

This commit is contained in:
Felix Paul Kühne 2015-11-24 16:28:48 +01:00
parent 0cb9e81363
commit 6225d2fd7d
2 changed files with 3 additions and 3 deletions

View File

@ -347,7 +347,7 @@ typedef enum input_event_type_e
INPUT_EVENT_LENGTH,
/* A title has been added or removed or selected.
* It imply that chapter has changed (not chapter event is sent) */
* It implies that the chapter has changed (no chapter event is sent) */
INPUT_EVENT_TITLE,
/* A chapter has been added or removed or selected. */
INPUT_EVENT_CHAPTER,

View File

@ -215,7 +215,7 @@ void resolve_xml_special_chars( char *psz_value )
{
psz_value = psz_end + 1;
if( cp == 0 )
(void)0; /* skip nuls */
(void)0; /* skip nulls */
else
if( cp <= 0x7F )
{
@ -287,7 +287,7 @@ void resolve_xml_special_chars( char *psz_value )
/**
* XML-encode an UTF-8 string
* \param str nul-terminated UTF-8 byte sequence to XML-encode
* \param str null-terminated UTF-8 byte sequence to XML-encode
* \return XML encoded string or NULL on error
* (errno is set to ENOMEM or EILSEQ as appropriate)
*/