Skip to content

Commit

Permalink
test_input_stream: display size
Browse files Browse the repository at this point in the history
  • Loading branch information
tguillem committed Jun 5, 2016
1 parent 95b7106 commit 56c1c41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/input/stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ read_at( struct reader **pp_readers, unsigned int i_readers,
const uint8_t *p_peek = NULL;
struct reader *p_reader = pp_readers[i];

log( "%s: %s %zu @ %"PRIu64"\n", p_reader->psz_name,
p_buf ? "read" : "peek", i_read, i_offset );
log( "%s: %s %zu @ %"PRIu64" (size: %" PRIu64 ")\n", p_reader->psz_name,
p_buf ? "read" : "peek", i_read, i_offset, i_size );
assert( p_reader->pf_seek( p_reader, i_offset ) != -1 );

i_last_pos = p_reader->pf_tell( p_reader );
Expand Down

0 comments on commit 56c1c41

Please sign in to comment.