From e004e0e745330b45f8d56ec8ed3c7a0b3f7bcd6f Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 26 May 2008 10:46:45 +0000 Subject: Squash more warnings. svn path=/trunk/netsurf/; revision=4210 --- render/box_construct.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'render') diff --git a/render/box_construct.c b/render/box_construct.c index 9c001cb0d..df7aedafc 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -482,17 +482,17 @@ bool box_construct_element(xmlNode *n, struct content *content, case CSS_LIST_STYLE_TYPE_DISC: default: /* 2022 BULLET */ - marker->text = "\342\200\242"; + marker->text = (char *) "\342\200\242"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_CIRCLE: /* 25CB WHITE CIRCLE */ - marker->text = "\342\227\213"; + marker->text = (char *) "\342\227\213"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_SQUARE: /* 25AA BLACK SMALL SQUARE */ - marker->text = "\342\226\252"; + marker->text = (char *) "\342\226\252"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_DECIMAL: -- cgit v1.2.3