Commit ec70a047 authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/directory.c: minor fix.

parent 685eb12a
...@@ -149,10 +149,10 @@ static void Close( vlc_object_t * p_this ) ...@@ -149,10 +149,10 @@ static void Close( vlc_object_t * p_this )
/***************************************************************************** /*****************************************************************************
* Read: read the directory * Read: read the directory
*****************************************************************************/ *****************************************************************************/
static ssize_t Read( input_thread_t * p_input, byte_t * p_buffer, size_t i_len ) static ssize_t Read( input_thread_t * p_input, byte_t * p_buffer, size_t i_len)
{ {
char * psz_name; char *psz_name = 0;
char * psz_mode; char *psz_mode = 0;
int i_mode, i_pos; int i_mode, i_pos;
playlist_t * p_playlist = (playlist_t *) vlc_object_find( playlist_t * p_playlist = (playlist_t *) vlc_object_find(
......
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