diff options
author | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2012-08-16 00:51:44 -0500 |
---|---|---|
committer | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2012-08-16 00:51:44 -0500 |
commit | 025d4158387673dfb8f6af4d199ee63230e0087a (patch) | |
tree | d9ad789a03c20ec5d97086ee31993afed2f1187d /pngerror.c | |
parent | 810c99583b859f6e8143ed91461ac1caabbf31fb (diff) |
[libpng16] Folded long lines and fixed some grammar.
Diffstat (limited to 'pngerror.c')
-rw-r--r-- | pngerror.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pngerror.c b/pngerror.c index c22a2515b..bf15bd7e0 100644 --- a/pngerror.c +++ b/pngerror.c @@ -80,7 +80,8 @@ png_error,(png_const_structrp png_ptr, png_const_charp error_message), } #endif if (png_ptr != NULL && png_ptr->error_fn != NULL) - (*(png_ptr->error_fn))(png_constcast(png_structrp,png_ptr), error_message); + (*(png_ptr->error_fn))(png_constcast(png_structrp,png_ptr), + error_message); /* If the custom handler doesn't exist, or if it returns, use the default handler, which will not return. */ @@ -497,7 +498,8 @@ png_chunk_warning(png_const_structrp png_ptr, png_const_charp warning_message) #ifdef PNG_READ_SUPPORTED #ifdef PNG_BENIGN_ERRORS_SUPPORTED void PNGAPI -png_chunk_benign_error(png_const_structrp png_ptr, png_const_charp error_message) +png_chunk_benign_error(png_const_structrp png_ptr, png_const_charp + error_message) { if (png_ptr->flags & PNG_FLAG_BENIGN_ERRORS_WARN) png_chunk_warning(png_ptr, error_message); |