summaryrefslogtreecommitdiff
path: root/pango/opentype/hb-buffer.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-08-03 22:43:02 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-08-03 22:43:02 -0400
commit2f19c9ae2e1e7f2d13b8e78d09fb992f55caf00b (patch)
tree844a315242d5c8d5f170116c80ab84d4feba5657 /pango/opentype/hb-buffer.c
parent832cb0e4680d4274869ee67b84418e5ec06de247 (diff)
downloadpango-2f19c9ae2e1e7f2d13b8e78d09fb992f55caf00b.tar.gz
[HB] Remove use of typeof()
Diffstat (limited to 'pango/opentype/hb-buffer.c')
-rw-r--r--pango/opentype/hb-buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/opentype/hb-buffer.c b/pango/opentype/hb-buffer.c
index d995b127..61f960da 100644
--- a/pango/opentype/hb-buffer.c
+++ b/pango/opentype/hb-buffer.c
@@ -78,7 +78,7 @@ hb_buffer_create (unsigned int pre_alloc_size)
{
hb_buffer_t *buffer;
- if (!HB_OBJECT_DO_CREATE (buffer))
+ if (!HB_OBJECT_DO_CREATE (hb_buffer_t, buffer))
return &_hb_buffer_nil;
if (pre_alloc_size)