summaryrefslogtreecommitdiff
path: root/cmarkdown.c
diff options
context:
space:
mode:
authorgottox@rootkit.lan <gottox@rootkit.lan>2007-12-12 01:07:39 +0100
committergottox@rootkit.lan <gottox@rootkit.lan>2007-12-12 01:07:39 +0100
commit6a9b913b6c5d4d74e887b632471c5398aeb0ae76 (patch)
tree4cb3e181efa2ff64094497f49d2d4ceac698dcdf /cmarkdown.c
parent46e907346cd8ca0bc5e8499325ee433f100ca609 (diff)
even more stupid bug -.-
Diffstat (limited to 'cmarkdown.c')
-rw-r--r--cmarkdown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmarkdown.c b/cmarkdown.c
index d708574..a101e97 100644
--- a/cmarkdown.c
+++ b/cmarkdown.c
@@ -257,7 +257,7 @@ dolist(const char *begin, const char *end) {
buffer[i] = '\0';
while(buffer[--i] == '\n') buffer[i] = '\0';
fputs("<li>",stdout);
- hprint(buffer,i+2+buffer);
+ process(buffer,i+2+buffer);
fputs("</li>\n",stdout);
}
puts(ul ? "</ul>" : "</ol>");