From 95651ba3605ad64b99e7d5b8664f5737dba5d4dd Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 13 Feb 2009 16:02:46 +0000 Subject: [PATCH] fixed typos --- ext/gd/libgd/gdparttopng.c | 2 +- ext/gd/libgd/gdtopng.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/gd/libgd/gdparttopng.c b/ext/gd/libgd/gdparttopng.c index 677a0b57101..a82925b0ed4 100644 --- a/ext/gd/libgd/gdparttopng.c +++ b/ext/gd/libgd/gdparttopng.c @@ -37,7 +37,7 @@ main (int argc, char **argv) fclose (in); if (!im) { - fprintf (stderr, "Input is not in PNG format!\n"); + fprintf (stderr, "Input is not in GD2 format!\n"); exit (1); } out = fopen (argv[2], "wb"); diff --git a/ext/gd/libgd/gdtopng.c b/ext/gd/libgd/gdtopng.c index 9de34990ab0..9670b101976 100644 --- a/ext/gd/libgd/gdtopng.c +++ b/ext/gd/libgd/gdtopng.c @@ -26,7 +26,7 @@ main (int argc, char **argv) fclose (in); if (!im) { - fprintf (stderr, "Input is not in PNG format!\n"); + fprintf (stderr, "Input is not in GD format!\n"); exit (1); } out = fopen (argv[2], "wb");