m[buffer] Rename internal variable

This commit is contained in:
Behdad Esfahbod 2020-06-28 20:33:54 -07:00
parent 9fcba109bf
commit 3b91e0b592
1 changed files with 4 additions and 3 deletions

View File

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