From 631a4202782048158b2145493bd9597a2908ff53 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Wed, 2 Nov 2016 19:06:58 -0700 Subject: [PATCH] WIP --- main.c | 3 --- util.c | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 2c4d8cd..9681bab 100644 --- a/main.c +++ b/main.c @@ -50,7 +50,6 @@ static void export_subbook_entries(EB_Book* eb_book, Subbook* subbook) { } Entry* entry = subbook->entries + subbook->entry_count++; - printf("%d\n", subbook->entry_count); entry->heading_page = hit->heading.page; entry->heading_offset = hit->heading.offset; @@ -62,8 +61,6 @@ static void export_subbook_entries(EB_Book* eb_book, Subbook* subbook) { } } while (hit_count > 0); - - printf("done\n"); } static void export_subbook(EB_Book* eb_book, Subbook* subbook) { diff --git a/util.c b/util.c index 23ca7f6..a776ff1 100644 --- a/util.c +++ b/util.c @@ -16,6 +16,9 @@ * along with this program. If not, see . */ +#include +#include + #include "util.h" #include "convert.h"