diff options
Diffstat (limited to 'source/html')
-rw-r--r-- | source/html/css-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/html/css-parse.c b/source/html/css-parse.c index e3ddd48f..91958a98 100644 --- a/source/html/css-parse.c +++ b/source/html/css-parse.c @@ -414,7 +414,7 @@ restart: { buf->color = (a << 20) | (b << 12) | (c << 4); } - sprintf(buf->string, "%06x", buf->color); // XXX + sprintf(buf->string, "%06x", buf->color); return CSS_COLOR; colorerror: fz_css_error(buf, "invalid color"); |