summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-04-27 14:59:07 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-04-27 14:59:07 +0000
commitc527cc8708a7981f22628bd9ffe89184000f88b4 (patch)
treebf176cdf95930cd2c044608cc7cffd84b80b10ec
parent80fd6dcaa4eb5033194ef8140392d748c05c9c33 (diff)
downloadphp-git-c527cc8708a7981f22628bd9ffe89184000f88b4.tar.gz
Fixed bug #28184 (C++ comments in GD library sources).
-rw-r--r--ext/gd/libgd/gd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c
index 7cfcd64f90..ff3e60a7d4 100644
--- a/ext/gd/libgd/gd.c
+++ b/ext/gd/libgd/gd.c
@@ -1873,7 +1873,7 @@ void gdImageFill(gdImagePtr im, int x, int y, int nc)
int oc; /* old pixel value */
int wx2,wy2;
/* stack of filled segments */
- //struct seg stack[FILL_MAX],*sp = stack;;
+ /* struct seg stack[FILL_MAX],*sp = stack;; */
struct seg *stack;
struct seg *sp;