diff options
| author | Takeshi Abe <tabe@php.net> | 2010-01-13 06:55:03 +0000 |
|---|---|---|
| committer | Takeshi Abe <tabe@php.net> | 2010-01-13 06:55:03 +0000 |
| commit | 4ad43efcb4954aab92c8fc675e7f1411748914bf (patch) | |
| tree | 94c74ef207a10bf5fc6c475f013cb54bc85f763d | |
| parent | 16bc68fa0ca80efa47cf24450ae43ae42ddbf7ea (diff) | |
| download | php-git-4ad43efcb4954aab92c8fc675e7f1411748914bf.tar.gz | |
removed an unused variable
| -rw-r--r-- | ext/gd/libgd/gd_gif_out.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/gd/libgd/gd_gif_out.c b/ext/gd/libgd/gd_gif_out.c index 1fe36880a4..14045385ab 100644 --- a/ext/gd/libgd/gd_gif_out.c +++ b/ext/gd/libgd/gd_gif_out.c @@ -117,9 +117,8 @@ void gdImageGif (gdImagePtr im, FILE * outFile) void gdImageGifCtx(gdImagePtr im, gdIOCtxPtr out) { gdImagePtr pim = 0, tim = im; - int interlace, transparent, BitsPerPixel; + int interlace, BitsPerPixel; interlace = im->interlace; - transparent = im->transparent; if (im->trueColor) { /* Expensive, but the only way that produces an acceptable result: mix down to a palette |
