[iter] Fix hb_copy() return value

This commit is contained in:
Behdad Esfahbod 2018-12-21 16:20:30 -05:00
parent 40d71211a8
commit 65e8bd56ad
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ hb_copy (hb_iter_t<D> &id, hb_iter_t<S> &is)
{
for (; id && is; ++id, ++is)
*id = *is;
return !id;
return !is;
}
int