Fix typo in debug output.
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);
}