From de16990a52127cc169ac1f9656ea2e04f07845b4 Mon Sep 17 00:00:00 2001 From: handa Date: Fri, 14 Sep 2007 05:05:51 +0000 Subject: [PATCH] (struct _MFLTGlyph): Change signedness of members. --- src/m17n-flt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 1.7.10.4