Commit 6a3e9f6a authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

include/vlc_playlist.h: Code formatting.

parent a2fc3594
...@@ -412,7 +412,8 @@ VLC_EXPORT( playlist_item_t *, playlist_GetLastLeaf, ( playlist_t *p_playlist, p ...@@ -412,7 +412,8 @@ VLC_EXPORT( playlist_item_t *, playlist_GetLastLeaf, ( playlist_t *p_playlist, p
* Inline functions * Inline functions
***********************************************************************/ ***********************************************************************/
/** Open a playlist file, add its content to the current playlist */ /** Open a playlist file, add its content to the current playlist */
static inline int playlist_Import( playlist_t *p_playlist, const char *psz_file){ static inline int playlist_Import( playlist_t *p_playlist, const char *psz_file)
{
char psz_uri[256+10]; char psz_uri[256+10];
input_item_t *p_input; input_item_t *p_input;
snprintf( psz_uri, 256+9, "file/://%s", psz_file ); snprintf( psz_uri, 256+9, "file/://%s", psz_file );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment