Module: wine Branch: master Commit: 2cb4fa04cfd0fba2a6f94ddaa813382bee608342 URL: https://gitlab.winehq.org/wine/wine/-/commit/2cb4fa04cfd0fba2a6f94ddaa813382...
Author: Francois Gouget fgouget@free.fr Date: Wed May 17 12:41:56 2023 +0200
wineps: Fix the spelling of a constant.
---
dlls/wineps.drv/ntf.h | 2 +- dlls/wineps.drv/unixlib.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wineps.drv/ntf.h b/dlls/wineps.drv/ntf.h index 4431a72b527..f9ad1f3314b 100644 --- a/dlls/wineps.drv/ntf.h +++ b/dlls/wineps.drv/ntf.h @@ -37,7 +37,7 @@ struct list_entry int unk[4]; };
-#define GLYPH_SET_OMMIT_CP 1 +#define GLYPH_SET_OMIT_CP 1 struct glyph_set { int size; diff --git a/dlls/wineps.drv/unixlib.c b/dlls/wineps.drv/unixlib.c index e90d3c31531..76e60ca1596 100644 --- a/dlls/wineps.drv/unixlib.c +++ b/dlls/wineps.drv/unixlib.c @@ -1549,7 +1549,7 @@ static BOOL map_glyph_to_unicode(struct font_data *font_data, return FALSE;
p = (const unsigned short *)((const char *)glyph_set + glyph_set->glyph_set_off); - if (glyph_set->flags & GLYPH_SET_OMMIT_CP) + if (glyph_set->flags & GLYPH_SET_OMIT_CP) { const struct code_page *code_page = (const struct code_page *)((const char *)glyph_set + glyph_set->cp_off); unsigned short def_cp;