m[buffer] Rename internal variable

This commit is contained in:
Behdad Esfahbod 2020-06-28 20:33:54 -07:00
parent 9fcba109bf
commit 3b91e0b592

View File

@ -341,10 +341,11 @@ hb_buffer_t::swap_buffers ()
if (out_info != info)
{
hb_glyph_info_t *tmp_string;
tmp_string = info;
hb_glyph_info_t *tmp;
tmp = info;
info = out_info;
out_info = tmp_string;
out_info = tmp;
pos = (hb_glyph_position_t *) out_info;
}