From b7a763cefe4483dc8020a558cc5fb2b6c80065bf Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Sat, 29 Sep 2012 10:07:04 +0100 Subject: [PATCH] Comment out debug printf() in pdf.c The printf() about the number of links on a page is very useful, but only for debugging. As other instances of debugging printf() in djvu.c and pdf.c are commented out, it seemed consistent to do the same with this one. --- pdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf.c b/pdf.c index d20a12b86..dd0de744b 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\n", link_count); + //printf("## getPageLinks found %d links in document\n", link_count); fz_drop_link(page->doc->context, page_links);