[set] Oops. Fix compile

This commit is contained in:
Behdad Esfahbod 2021-06-09 14:03:25 -06:00
parent 3962225a72
commit bd5502f09f
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ hb_set_t *
hb_set_copy (const hb_set_t *set)
{
hb_set_t *copy = hb_set_create ();
copy->set (set);
copy->set (*set);
return copy;
}