polish comments

This commit is contained in:
John Cupitt 2019-11-25 20:50:27 +00:00
parent 2eebcb0c07
commit 14859f9862
2 changed files with 2 additions and 1 deletions

View File

@ -670,6 +670,7 @@ vips_streami_read( VipsStreami *streami, void *buffer, size_t length )
if( length > 0 ) { if( length > 0 ) {
ssize_t n; ssize_t n;
VIPS_DEBUG_MSG( " calling class->read()\n" );
n = class->read( streami, buffer, length ); n = class->read( streami, buffer, length );
VIPS_DEBUG_MSG( " %zd bytes from read()\n", n ); VIPS_DEBUG_MSG( " %zd bytes from read()\n", n );
if( n == -1 ) { if( n == -1 ) {

View File

@ -78,7 +78,7 @@ vips_streamiu_read_real( VipsStreami *streami,
VIPS_DEBUG_MSG( "vips_streamiu_read_real:\n" ); VIPS_DEBUG_MSG( "vips_streamiu_read_real:\n" );
/* Return value if no attached handler. /* Return this value (error) if there's no attached handler.
*/ */
bytes_read = 0; bytes_read = 0;