From: handa Date: Fri, 14 Sep 2007 05:05:51 +0000 (+0000) Subject: (struct _MFLTGlyph): Change signedness of members. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=de16990a52127cc169ac1f9656ea2e04f07845b4;p=m17n%2Fm17n-lib.git (struct _MFLTGlyph): Change signedness of members. --- diff --git a/src/m17n-flt.h b/src/m17n-flt.h index 4277d18..12d2840 100644 --- a/src/m17n-flt.h +++ b/src/m17n-flt.h @@ -76,12 +76,12 @@ struct _MFLTGlyph int xoff, yoff; /***en Flag to tell if the member is encoded into a glyph ID of a font. */ - int encoded : 1; + unsigned encoded : 1; /***en Flag to tell if the metrics of the glyph (members thru ) are already calculated. */ - int measured : 1; + unsigned measured : 1; /***en For m17n-lib's internal use only. */ - unsigned int internal : 30; + unsigned internal : 30; }; /***en