From: Takeshi Abe Date: Fri, 13 Feb 2009 16:02:46 +0000 (+0000) Subject: fixed typos X-Git-Tag: php-5.4.0alpha1~191^2~4285 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95651ba3605ad64b99e7d5b8664f5737dba5d4dd;p=php fixed typos --- diff --git a/ext/gd/libgd/gdparttopng.c b/ext/gd/libgd/gdparttopng.c index 677a0b5710..a82925b0ed 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 9de34990ab..9670b10197 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");