X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Finput%2Fstream.c;h=762e0fa1a7d3ec67e5c76541487051f233253212;hb=3ea1b0e909ff073d21a53e83e80fdfb57e5533ad;hp=1cce7a9e6575b283e51732b2566e9f21630a134f;hpb=327a8a92704445afa16f3a9316c8f65437603a5d;p=vlc diff --git a/src/input/stream.c b/src/input/stream.c index 1cce7a9e65..762e0fa1a7 100644 --- a/src/input/stream.c +++ b/src/input/stream.c @@ -1210,7 +1210,8 @@ char *stream_ReadLine( stream_t *s ) } /* Remove trailing LF/CR */ - while( i_line > 0 && ( p_line[i_line-1] == '\r' || p_line[i_line-1] == '\n') ) i_line--; + while( i_line > 0 && ( p_line[i_line-1] == '\r' || + p_line[i_line-1] == '\n') ) i_line--; if( i_read > 0 ) { @@ -1218,7 +1219,7 @@ char *stream_ReadLine( stream_t *s ) return p_line; } - /* We failed to read any data, probably EOF*/ + /* We failed to read any data, probably EOF */ if( p_line ) free( p_line ); return NULL; }