Fix typo :)

This commit is contained in:
Behdad Esfahbod 2019-06-10 14:06:25 -07:00
parent 19b8eb08e5
commit 0c5da57d1a
2 changed files with 3 additions and 2 deletions

View File

@ -543,9 +543,10 @@ _hb_mapped_file_destroy (void *file_)
hb_blob_t *
hb_blob_create_from_file (const char *file_name)
{
#ifdef HB_NO_OEPN
#ifdef HB_NO_OPEN
return hb_blob_get_empty ();
#endif
/* Adopted from glib's gmappedfile.c with Matthias Clasen and
Allison Lortie permission but changed a lot to suit our need. */
#if defined(HAVE_MMAP) && !defined(HB_NO_MMAP)

View File

@ -62,7 +62,7 @@
#define HB_NO_MATH
#define HB_NO_MMAP
#define HB_NO_NAME
#define HB_NO_OEPN
#define HB_NO_OPEN
#define HB_NO_SETLOCALE
#define HB_NO_SUBSET_LAYOUT
#endif