edje_embryo: fix to use parameter of macro ALLOC_COPY_DESC

The parameter "To" of macro ALLOC_COPY_DESC is not used.
To use the parameter "To", "d" is replaced to "To".
This commit is contained in:
Jaehyun Cho 2020-08-03 19:22:27 +09:00
parent 52df41b217
commit 6f981794ad
1 changed files with 1 additions and 1 deletions

View File

@ -2103,7 +2103,7 @@ case EDJE_PART_TYPE_##Short: \
tmp = (Edje_Part_Description_##Type *)parent; \
new = calloc(1, sizeof (Edje_Part_Description_##Type)); \
new->Spec = tmp->Spec; \
d = &new->common; \
To = &new->common; \
break; \
}