diff options
author | Takeshi Abe <tabe@php.net> | 2009-02-13 16:02:46 +0000 |
---|---|---|
committer | Takeshi Abe <tabe@php.net> | 2009-02-13 16:02:46 +0000 |
commit | 95651ba3605ad64b99e7d5b8664f5737dba5d4dd (patch) | |
tree | c984a28e043bc03d85da970e688d1d163bc9d211 | |
parent | e2fa0bbf23e493d3f45af2b5d0fe4368e4dce2f4 (diff) | |
download | php-git-95651ba3605ad64b99e7d5b8664f5737dba5d4dd.tar.gz |
fixed typos
-rw-r--r-- | ext/gd/libgd/gdparttopng.c | 2 | ||||
-rw-r--r-- | 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 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"); |