evas/wayland_egl: Fix Evas pointer assignment.

Don't assign the public data to an Evas *.

SVN revision: 83778
This commit is contained in:
Rafael Antognolli 2013-02-08 11:50:06 +00:00
parent fb5d27d4ae
commit d74b652b29
1 changed files with 1 additions and 1 deletions

View File

@ -659,7 +659,7 @@ eng_setup(Evas *eo_e, void *in)
re = calloc(1, sizeof(Render_Engine));
if (!re) return 0;
re->info = info;
re->evas = e;
re->evas = eo_e;
e->engine.data.output = re;
re->w = e->output.w;
re->h = e->output.h;