summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-05-26 10:46:45 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-05-26 10:46:45 +0000
commite004e0e745330b45f8d56ec8ed3c7a0b3f7bcd6f (patch)
tree35f8a5384f1427a7f5354a6172bad625ba6af34d
parentf7bc0cf850db8b811742f89eb66fb270d48a5c0a (diff)
downloadnetsurf-e004e0e745330b45f8d56ec8ed3c7a0b3f7bcd6f.tar.gz
netsurf-e004e0e745330b45f8d56ec8ed3c7a0b3f7bcd6f.tar.bz2
Squash more warnings.
svn path=/trunk/netsurf/; revision=4210
-rw-r--r--render/box_construct.c6
1 files changed, 3 insertions, 3 deletions
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: