mirror of
https://github.com/simon987/libscan.git
synced 2025-04-05 12:23:00 +00:00
Fix build issues
This commit is contained in:
parent
d41e2737fc
commit
0edc3eb18a
@ -15,13 +15,13 @@ __thread scan_ebook_ctx_t thread_ctx;
|
|||||||
pthread_mutex_t Mutex;
|
pthread_mutex_t Mutex;
|
||||||
|
|
||||||
static void my_fz_lock(UNUSED(void *user), int lock) {
|
static void my_fz_lock(UNUSED(void *user), int lock) {
|
||||||
if (lock == FZ_LOCK_JPX) {
|
if (lock == FZ_LOCK_FREETYPE) {
|
||||||
pthread_mutex_lock(&Mutex);
|
pthread_mutex_lock(&Mutex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void my_fz_unlock(UNUSED(void *user), int lock) {
|
static void my_fz_unlock(UNUSED(void *user), int lock) {
|
||||||
if (lock == FZ_LOCK_JPX) {
|
if (lock == FZ_LOCK_FREETYPE) {
|
||||||
pthread_mutex_unlock(&Mutex);
|
pthread_mutex_unlock(&Mutex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user