summaryrefslogtreecommitdiff
path: root/content/handlers
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2021-02-02 15:06:04 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2021-02-02 15:06:04 +0000
commit3b57deb046a35a8e88fb0db672adf9aac6899aea (patch)
treeed418274508ad6e969680d51098c2f50c6246d93 /content/handlers
parent87b5fd1bccc28132405fe34e129e1eb1e4b63f5b (diff)
downloadnetsurf-3b57deb046a35a8e88fb0db672adf9aac6899aea.tar.gz
netsurf-3b57deb046a35a8e88fb0db672adf9aac6899aea.tar.bz2
html: list counter style: Constify {pre|post}fix memebers.
Diffstat (limited to 'content/handlers')
-rw-r--r--content/handlers/html/list_counter_style.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/handlers/html/list_counter_style.c b/content/handlers/html/list_counter_style.c
index fc54c6c3f..e864c9b52 100644
--- a/content/handlers/html/list_counter_style.c
+++ b/content/handlers/html/list_counter_style.c
@@ -41,8 +41,8 @@ struct list_counter_style {
const unsigned int length;
const symbol_t value;
} pad;
- symbol_t prefix;
- symbol_t postfix;
+ const symbol_t prefix;
+ const symbol_t postfix;
const symbol_t *symbols; /**< array of symbols which represent this style */
const int *weights; /**< symbol weights for additive schemes */
const size_t items; /**< items in symbol and weight table */