From 251882de7d40e17d15009722cb7c70e8d6c7fc1f Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 11 Aug 2002 19:19:35 +0000 Subject: [PATCH] missed to commit this fix: correct since this is only a flag --- ext/gd/libgd/gd_gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1