summaryrefslogtreecommitdiff
path: root/src/commonmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commonmark.c')
-rw-r--r--src/commonmark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commonmark.c b/src/commonmark.c
index 5c08589..cbf99c1 100644
--- a/src/commonmark.c
+++ b/src/commonmark.c
@@ -368,9 +368,9 @@ static int S_render_node(cmark_renderer *renderer, cmark_node *node,
if (entering) {
LIT("<");
if (strncmp(cmark_node_get_url(node), "mailto:", 7) == 0) {
- LIT((char *)cmark_node_get_url(node) + 7);
+ LIT((const char *)cmark_node_get_url(node) + 7);
} else {
- LIT((char *)cmark_node_get_url(node));
+ LIT((const char *)cmark_node_get_url(node));
}
LIT(">");
// return signal to skip contents of node...