[libpng17] Fixed some misleading indentation (Krishnaraj Bhat).

This commit is contained in:
Glenn Randers-Pehrson
2016-03-07 07:49:09 -06:00
parent 6d2e06f25f
commit bbe8ea6eb0
5 changed files with 115 additions and 110 deletions

View File

@@ -1140,6 +1140,7 @@ png_get_user_chunk_ptr(png_const_structrp png_ptr)
{
if (png_ptr)
return png_ptr->user_chunk_ptr;
return NULL;
}
#endif
@@ -1151,9 +1152,10 @@ png_get_compression_buffer_size(png_const_structrp png_ptr)
return 0;
# if defined(PNG_SEQUENTIAL_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
return png_ptr->IDAT_size;
return png_ptr->IDAT_size;
# else
return PNG_IDAT_READ_SIZE; /* progressive reader */
return PNG_IDAT_READ_SIZE; /* progressive reader */
# endif
}