From 0edc3eb18a6697047ae783e5039b28da6f5b06fb Mon Sep 17 00:00:00 2001 From: simon987 Date: Fri, 23 Oct 2020 17:37:23 -0400 Subject: [PATCH] Fix build issues --- libscan/ebook/ebook.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libscan/ebook/ebook.c b/libscan/ebook/ebook.c index aeb4b20..89fcedf 100644 --- a/libscan/ebook/ebook.c +++ b/libscan/ebook/ebook.c @@ -15,13 +15,13 @@ __thread scan_ebook_ctx_t thread_ctx; pthread_mutex_t Mutex; static void my_fz_lock(UNUSED(void *user), int lock) { - if (lock == FZ_LOCK_JPX) { + if (lock == FZ_LOCK_FREETYPE) { pthread_mutex_lock(&Mutex); } } static void my_fz_unlock(UNUSED(void *user), int lock) { - if (lock == FZ_LOCK_JPX) { + if (lock == FZ_LOCK_FREETYPE) { pthread_mutex_unlock(&Mutex); } }