Gitweb links:

...log 
http://git.netsurf-browser.org/libnsgif.git/shortlog/5398ee4f08ffeab3778dc8f014f49f73c8e9eb43
...commit 
http://git.netsurf-browser.org/libnsgif.git/commit/5398ee4f08ffeab3778dc8f014f49f73c8e9eb43
...tree 
http://git.netsurf-browser.org/libnsgif.git/tree/5398ee4f08ffeab3778dc8f014f49f73c8e9eb43

The branch, master has been updated
       via  5398ee4f08ffeab3778dc8f014f49f73c8e9eb43 (commit)
      from  464bec1bbec32978a41b0a0f011711df428117c3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/libnsgif.git/commit/?id=5398ee4f08ffeab3778dc8f014f49f73c8e9eb43
commit 5398ee4f08ffeab3778dc8f014f49f73c8e9eb43
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    GIF: Squash warning about increase of alignment of pointer type.

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);
 }
 
 /**


-----------------------------------------------------------------------

Summary of changes:
 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);
 }
 
 /**


-- 
NetSurf GIF Decoder
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to