raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=dd4cd1ce73d68dbf34ceca89b6b1e9c3255cb77e

commit dd4cd1ce73d68dbf34ceca89b6b1e9c3255cb77e
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Sun Feb 12 15:26:05 2017 +0900

    e thumb - silence alignment warning - valid code
    
    the code is right as the int array is at the start of the allocation
    that should be aligned to all types anyway. but it's noise that
    distracts.
---
 src/bin/e_thumb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_thumb.c b/src/bin/e_thumb.c
index 8a0e40e..8f4c039 100644
--- a/src/bin/e_thumb.c
+++ b/src/bin/e_thumb.c
@@ -366,7 +366,7 @@ _e_thumb_gen_begin(int objid, const char *file, const char 
*key, int w, int h,
    //  [char[]]sig2
    //  [char[]]src2
    //  ...
-   desk = (int *)buf;
+   desk = (int *)(void *)buf;
    desk[0] = desk_x;
    desk[1] = desk_y;
    desk[2] = desk_x_count;

-- 


Reply via email to