From dd4cd1ce73d68dbf34ceca89b6b1e9c3255cb77e Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 12 Feb 2017 15:26:05 +0900 Subject: [PATCH] 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 8a0e40ea4..8f4c0398b 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;