diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-02-12 16:07:15 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-02-12 16:25:35 +0900 |
commit | eb8f2a68b059aafbd9e1175f7093378701257ead (patch) | |
tree | 8d6f23c87f8d6ece20bd9cf67f3c916a7bb96cd1 | |
parent | d8e639a9eac0c757652987fbfebe02b477716df5 (diff) | |
download | enlightenment-eb8f2a68b059aafbd9e1175f7093378701257ead.tar.gz |
e comp - fix stupid cast to from eina rect* to char* to eina rect* again
just causes warnings and makes no sense...
-rw-r--r-- | src/bin/e_comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index bbc2c40c99..ef86485088 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -775,7 +775,7 @@ _e_comp_shapes_update_job(void *d EINA_UNUSED) i = 0; EINA_ITERATOR_FOREACH(ti, tr) { - exr[i++] = *(Eina_Rectangle*)((char*)tr); + exr[i++] = *((Eina_Rectangle *)tr); if (i == tile_count - 1) exr = realloc(exr, sizeof(Eina_Rectangle) * (tile_count *= 2)); #ifdef SHAPE_DEBUG |