Canvas text: use eina_value_set and not eina_value_pset

CID 1381327
This commit is contained in:
Daniel Hirt 2017-09-25 12:36:14 +03:00
parent 2dac4a4efe
commit b7b5d08929
1 changed files with 1 additions and 1 deletions

View File

@ -15912,7 +15912,7 @@ _resolve_async(Text_Promise_Ctx *td, Evas_Coord w, Evas_Coord h)
Eina_Value v;
Eina_Rectangle r = { 0, 0, w, h };
eina_value_setup(&v, EINA_VALUE_TYPE_RECTANGLE);
eina_value_pset(&v, &r);
eina_value_set(&v, r);
eina_promise_resolve(td->p, v);
free(td);
}