summaryrefslogtreecommitdiff
path: root/png.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2012-02-18 14:05:39 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2012-02-18 23:49:33 -0600
commit4ae1de1114cb83c6f1462e9f76c8efc23f3924c9 (patch)
treebeb8ed6de565e112c988d198e655faf6ac4ad1eb /png.c
parente0e4104db48cd38eda1414718be92984e93b9f0e (diff)
downloadlibpng-4ae1de1114cb83c6f1462e9f76c8efc23f3924c9.tar.gz
[libpng12] Imported from libpng-1.2.47.tarv1.2.47
Diffstat (limited to 'png.c')
-rw-r--r--png.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/png.c b/png.c
index 06c3c9c45..2bc7da007 100644
--- a/png.c
+++ b/png.c
@@ -17,7 +17,7 @@
#include "png.h"
/* Generate a compiler error if there is an old png.h in the search path. */
-typedef version_1_2_47rc01 Your_png_h_is_not_version_1_2_47rc01;
+typedef version_1_2_47 Your_png_h_is_not_version_1_2_47;
/* Version information for C files. This had better match the version
* string defined in png.h.
@@ -724,13 +724,13 @@ png_get_copyright(png_structp png_ptr)
#else
#ifdef __STDC__
return ((png_charp) PNG_STRING_NEWLINE \
- "libpng version 1.2.47rc01 - February 17, 2012" PNG_STRING_NEWLINE \
+ "libpng version 1.2.47 - February 18, 2012" PNG_STRING_NEWLINE \
"Copyright (c) 1998-2011 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \
"Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
"Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
PNG_STRING_NEWLINE);
#else
- return ((png_charp) "libpng version 1.2.47rc01 - February 17, 2012\
+ return ((png_charp) "libpng version 1.2.47 - February 18, 2012\
Copyright (c) 1998-2011 Glenn Randers-Pehrson\
Copyright (c) 1996-1997 Andreas Dilger\
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.");