Eliminate relocations from FcCodePageRange structure (bug 10982).

FcCodePageRange was using char pointers; replace them with char arrays.
This commit is contained in:
Keith Packard 2007-10-18 09:48:31 -07:00
parent 96925b99c0
commit 1bd0b5ba73
1 changed files with 6 additions and 6 deletions

View File

@ -80,13 +80,13 @@
*/
static const struct {
int bit;
const FcChar8 *lang;
char bit;
const FcChar8 lang[6];
} FcCodePageRange[] = {
{ 17, (const FcChar8 *) "ja" },
{ 18, (const FcChar8 *) "zh-cn" },
{ 19, (const FcChar8 *) "ko" },
{ 20, (const FcChar8 *) "zh-tw" },
{ 17, "ja" },
{ 18, "zh-cn" },
{ 19, "ko" },
{ 20, "zh-tw" },
};
#define NUM_CODE_PAGE_RANGE (int) (sizeof FcCodePageRange / sizeof FcCodePageRange[0])