Commit 7c9f5982c66dd737b651f9361dac8aaca443efd5

Martin Mitas 2016-11-07T19:48:16

Fix typo in debug output.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/md2html/md2html.c b/md2html/md2html.c
index eaf0371..a79ea4d 100644
--- a/md2html/md2html.c
+++ b/md2html/md2html.c
@@ -337,7 +337,7 @@ text_callback(MD_TEXTTYPE type, const MD_CHAR* text, MD_SIZE size, void* userdat
 static void
 debug_log_callback(const char* msg, void* userdata)
 {
-    fprintf(stderr, "Error:%s\n", msg);
+    fprintf(stderr, "Error: %s\n", msg);
 }