summaryrefslogtreecommitdiff
path: root/src/commonmark.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-05 16:31:04 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-07-05 16:31:04 -0700
commitbbfab9f82ac8c1cabc6cbc9ed3d9e41c7473cab5 (patch)
tree1ac54afb6db5189bf3cbcf842c1c1a0409574b76 /src/commonmark.c
parentafc1b89ac71b642a841c8b79ea0ec6b70d2adae5 (diff)
astyle formatting improvements.
Diffstat (limited to 'src/commonmark.c')
-rw-r--r--src/commonmark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonmark.c b/src/commonmark.c
index 07377a0..9ad9137 100644
--- a/src/commonmark.c
+++ b/src/commonmark.c
@@ -260,7 +260,7 @@ is_autolink(cmark_node *node)
link_text = node->first_child;
cmark_consolidate_text_nodes(link_text);
- realurl = (char*)url->data;
+ realurl = (char*)url->data;
realurllen = url->len;
if (strncmp(realurl, "mailto:", 7) == 0) {
realurl += 7;