From 5398ee4f08ffeab3778dc8f014f49f73c8e9eb43 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 27 Feb 2022 12:13:33 +0000 Subject: GIF: Squash warning about increase of alignment of pointer type. --- src/gif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gif.c b/src/gif.c index 467ff90..3c40685 100644 --- a/src/gif.c +++ b/src/gif.c @@ -203,7 +203,7 @@ static inline uint32_t* nsgif__bitmap_get( /* Get the frame data */ assert(gif->bitmap.get_buffer); - return (uint32_t *)gif->bitmap.get_buffer(gif->frame_image); + return (void *)gif->bitmap.get_buffer(gif->frame_image); } /** -- cgit v1.2.1