summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-02-27 12:13:33 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-02-27 12:13:33 +0000
commit5398ee4f08ffeab3778dc8f014f49f73c8e9eb43 (patch)
treebc4dac33e8c4c0f96942d4c9ebc302dae4f6048c /src
parent464bec1bbec32978a41b0a0f011711df428117c3 (diff)
downloadlibnsgif-5398ee4f08ffeab3778dc8f014f49f73c8e9eb43.tar.gz
libnsgif-5398ee4f08ffeab3778dc8f014f49f73c8e9eb43.tar.bz2
GIF: Squash warning about increase of alignment of pointer type.
Diffstat (limited to 'src')
-rw-r--r--src/gif.c2
1 files changed, 1 insertions, 1 deletions
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);
}
/**