summaryrefslogtreecommitdiff
path: root/src/houdini_href_e.c
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2015-01-05 16:45:38 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2015-01-05 16:45:38 -0800
commit1b6afb7654d29eced20de720d7b5d37fb861bad3 (patch)
tree8040843b983640d9afa69a8478b26231169afa53 /src/houdini_href_e.c
parent9a5c98fe0d6de2a1a940bc8b3209ba0c4fadf7c4 (diff)
Reformatted code consistently with astyle.
Diffstat (limited to 'src/houdini_href_e.c')
-rw-r--r--src/houdini_href_e.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/houdini_href_e.c b/src/houdini_href_e.c
index c8949d4..7527780 100644
--- a/src/houdini_href_e.c
+++ b/src/houdini_href_e.c
@@ -83,10 +83,10 @@ houdini_escape_href(cmark_strbuf *ob, const uint8_t *src, size_t size)
cmark_strbuf_puts(ob, "&#x27;");
break;
- /* the space can be escaped to %20 or a plus
- * sign. we're going with the generic escape
- * for now. the plus thing is more commonly seen
- * when building GET strings */
+ /* the space can be escaped to %20 or a plus
+ * sign. we're going with the generic escape
+ * for now. the plus thing is more commonly seen
+ * when building GET strings */
#if 0
case ' ':
cmark_strbuf_putc(ob, '+');