summaryrefslogtreecommitdiff
path: root/src/hb-buffer.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-08-13 11:47:08 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-11-02 14:40:42 -0500
commit2866d2974b6768e93cc7d473d14c5a8abae5f7fd (patch)
treee3e394c85384190f77f2792d885084355522d6e3 /src/hb-buffer.h
parentec90ee23b29aab187c3fa209970aa97434c84b1b (diff)
[HB] Bitfield packing *is* very delicate
Fix the second instance.
Diffstat (limited to 'src/hb-buffer.h')
-rw-r--r--src/hb-buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hb-buffer.h b/src/hb-buffer.h
index f06a255a..f27739f6 100644
--- a/src/hb-buffer.h
+++ b/src/hb-buffer.h
@@ -56,7 +56,7 @@ typedef struct _hb_glyph_position_t {
hb_position_t x_advance;
hb_position_t y_advance;
/* XXX these should all be replaced by "uint32_t internal" */
- hb_bool_t new_advance :1; /* if set, the advance width values are
+ unsigned short new_advance :1; /* if set, the advance width values are
absolute, i.e., they won't be
added to the original glyph's value
but rather replace them */