Use long alignment for scratch buffer
Fixes last of scratch alignment warnings in hb-coretext.
diff --git a/src/hb-buffer.cc b/src/hb-buffer.cc
index df2ad73..bbf8ea0 100644
--- a/src/hb-buffer.cc
+++ b/src/hb-buffer.cc
@@ -161,9 +161,9 @@
out_len = 0;
out_info = info;
- ASSERT_STATIC (sizeof (pos[0]) % sizeof (scratch_buffer_t) == 0);
+ assert ((uintptr_t) pos % sizeof (scratch_buffer_t) == 0);
*size = allocated * sizeof (pos[0]) / sizeof (scratch_buffer_t);
- return (scratch_buffer_t *) pos;
+ return (scratch_buffer_t *) (void *) pos;
}