Fix Simplified Chinese character set conversions by switching around the

fields of an internal struct so it corresponds with the way variables of
this type are initialised.

PR:		185964
Submitted by:	Manuel Mausz <manuel-freebsd@mausz.at>
MFC after:	5 days
This commit is contained in:
Tijl Coosemans 2014-02-24 13:43:11 +00:00
parent 64f204f9dd
commit 93da8bdca8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262442

View File

@ -65,8 +65,8 @@ typedef enum {
} charset_t;
typedef struct {
int end;
int start;
int end;
int width;
} range_t;