diff options
author | Marcus Boerger <helly@php.net> | 2002-08-11 19:19:35 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-08-11 19:19:35 +0000 |
commit | 251882de7d40e17d15009722cb7c70e8d6c7fc1f (patch) | |
tree | 195b19319bdc8deafdcc6f3ee12d35873b422780 | |
parent | b9c0c918cc9b4b73fd42422814d202e2aa31c546 (diff) | |
download | php-git-251882de7d40e17d15009722cb7c70e8d6c7fc1f.tar.gz |
missed to commit this fix: correct since this is only a flag
-rw-r--r-- | ext/gd/libgd/gd_gd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/libgd/gd_gd.c b/ext/gd/libgd/gd_gd.c index 72213a848e..60037395c3 100644 --- a/ext/gd/libgd/gd_gd.c +++ b/ext/gd/libgd/gd_gd.c @@ -196,7 +196,7 @@ _gdPutColors (gdImagePtr im, gdIOCtx * out) { int i; - gdPutC (im->trueColor, out); + gdPutC ((unsigned char)im->trueColor, out); if (!im->trueColor) { gdPutWord (im->colorsTotal, out); |