a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/pngwrite.c src/lib/pngwrite.c
index 8be5299..debdd4b 100644
--- src/lib/pngwrite.c
+++ src/lib/pngwrite.c
@@ -1,26 +1,25 @@
 /* pngwrite.c - write out a memGfx to a PNG file, using the reference library libpng */
 /* (libpng is available from sourceforge and included in many open source distros,
  *  has a wide-open license intended to encourage usage of the PNG format, and the lib
  *  has been under development and testing for 14 years -- http://libpng.org/) */
 
 
 #include "png.h"   // MUST come before common.h, due to setjmp checking  in pngconf.h 
 #include "common.h"
 #include "memgfx.h"
 
-static char const rcsid[] = "$Id: pngwrite.c,v 1.4 2010/06/05 19:29:53 braney Exp $";
 
 static void pngAbort(png_structp png, png_const_charp errorMessage)
 /* type png_error wrapper around errAbort */
 {
 errAbort("%s", (char *)errorMessage);
 }
 
 static void pngWarn(png_structp png, png_const_charp warningMessage)
 /* type png_error wrapper around warn */
 {
 warn("%s", (char *)warningMessage);
 }
 
 boolean mgSaveToPng(FILE *png_file, struct memGfx *mg, boolean useTransparency)
 /* Save PNG to an already open file.