From 46afa82b526dfda6c51f5ef6c54aebdfa5decafa Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Mon, 24 Sep 2012 16:35:27 +0200 Subject: [PATCH] add LF to end of debug message --- pdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf.c b/pdf.c index faf813a9b..0477a6e03 100644 --- a/pdf.c +++ b/pdf.c @@ -623,7 +623,7 @@ static int getPageLinks(lua_State *L) { lua_rawseti(L, -2, ++link_count); } - printf("## getPageLinks found %d links in document", link_count); + printf("## getPageLinks found %d links in document\n", link_count); fz_drop_link(page->doc->context, page_links);