Changed elements glyph_length and char_length of structure

glyph_run_head_t to unsigned.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16985 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
FredKiefer 2003-06-21 23:24:44 +00:00
parent 5b9f620f99
commit 584c53368b

View file

@ -63,7 +63,7 @@ typedef struct GSLayoutManager_glyph_run_head_s
/* char_length must always be accurate. glyph_length is the number of
valid glyphs counting from the start. For a level 0 head, it's the number
of glyphs in that run. */
int glyph_length, char_length;
unsigned int glyph_length, char_length;
/* Glyph generation is complete for all created runs. */
unsigned int complete:1;