Commit bdc8dd67 authored by Francois Cartegnie's avatar Francois Cartegnie

stream_filter: smooth: fix peek error message

parent 1a29a30f
...@@ -825,7 +825,10 @@ static int Peek( stream_t *s, const uint8_t **pp_peek, unsigned i_peek ) ...@@ -825,7 +825,10 @@ static int Peek( stream_t *s, const uint8_t **pp_peek, unsigned i_peek )
chunk_t *chunk = get_chunk( s, true, NULL ); chunk_t *chunk = get_chunk( s, true, NULL );
if( !chunk || !chunk->data ) if( !chunk || !chunk->data )
{ {
msg_Err( s, "peek %"PRIu64" or no data", (uint64_t) chunk ); if(!chunk)
msg_Err( s, "cannot peek: no data" );
else
msg_Err( s, "cannot peek: chunk pos %"PRIu64"", chunk->read_pos );
return 0; return 0;
} }
......
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