[HB] Use four bytes for Null Tag, not 5

This commit is contained in:
Behdad Esfahbod 2009-05-17 19:31:18 -04:00
parent 19fc24f268
commit da1097bc3b
1 changed files with 3 additions and 1 deletions

View File

@ -313,7 +313,9 @@ struct Tag {
char v[4];
};
ASSERT_SIZE (Tag, 4);
DEFINE_NULL_DATA (Tag, 5, " ");
#define _NULL_TAG_INIT {' ', ' ', ' ', ' '}
DEFINE_NULL_DATA (Tag, 4, _NULL_TAG_INIT);
#undef _NULL_TAG_INIT
/* Glyph index number, same as uint16 (length = 16 bits) */
DEFINE_INT_TYPE_STRUCT (GlyphID, u, 16);