m[buffer] Rename internal variable
This commit is contained in:
parent
9fcba109bf
commit
3b91e0b592
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue