From: "Erich E. Hoover" Subject: [PATCH 3/3] wineps.drv: Make the PostScript glyph table fully const. Message-Id: Date: Tue, 15 Sep 2015 16:03:25 -0600 Same issue as patch 1 and 2. From d1c2ce1fdf20fcef55f905cf55b54c87fa795f73 Mon Sep 17 00:00:00 2001 From: "Erich E. Hoover" Date: Tue, 15 Sep 2015 15:09:49 -0600 Subject: wineps.drv: Make the PostScript glyph table fully const. --- dlls/wineps.drv/download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wineps.drv/download.c b/dlls/wineps.drv/download.c index 30eb0db..8dc7cb3 100644 --- a/dlls/wineps.drv/download.c +++ b/dlls/wineps.drv/download.c @@ -368,7 +368,7 @@ static void get_standard_glyph_name(WORD index, char *name) static const GLYPHNAME notdef = { -1, ".notdef" }; static const GLYPHNAME null = { -1, ".null" }; /* These PostScript Format 1 glyph names are stored by glyph index, do not reorder them. */ - static const GLYPHNAME *glyph_table[] = { + static const GLYPHNAME * const glyph_table[] = { ¬def, &null, &nonmarkingreturn, -- 1.9.1