Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/d566debc48a4c706213dfcd5ac6154d0920cdb12
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/d566debc48a4c706213dfcd5ac6154d0920cdb12
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/d566debc48a4c706213dfcd5ac6154d0920cdb12

The branch, master has been updated
       via  d566debc48a4c706213dfcd5ac6154d0920cdb12 (commit)
      from  6dfc0f1486e50ff6a3bb74164cc5e0af6b012deb (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/netsurf.git/commit/?id=d566debc48a4c706213dfcd5ac6154d0920cdb12
commit d566debc48a4c706213dfcd5ac6154d0920cdb12
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    change back to unsigned long to avoid warning on gnueabihf platforms

diff --git a/content/handlers/html/html_script.c 
b/content/handlers/html/html_script.c
index 405f6d4..1affb76 100644
--- a/content/handlers/html/html_script.c
+++ b/content/handlers/html/html_script.c
@@ -91,7 +91,7 @@ nserror html_script_exec(html_content *c, bool allow_defer)
                                        CONTENT_STATUS_DONE) {
                                /* external script is now available */
                                const char *data;
-                               size_t size;
+                               unsigned long size;
                                data = content_get_source_data(
                                                s->data.handle, &size );
                                script_handler(c->jscontext, data, size,


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

Summary of changes:
 content/handlers/html/html_script.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/handlers/html/html_script.c 
b/content/handlers/html/html_script.c
index 405f6d4..1affb76 100644
--- a/content/handlers/html/html_script.c
+++ b/content/handlers/html/html_script.c
@@ -91,7 +91,7 @@ nserror html_script_exec(html_content *c, bool allow_defer)
                                        CONTENT_STATUS_DONE) {
                                /* external script is now available */
                                const char *data;
-                               size_t size;
+                               unsigned long size;
                                data = content_get_source_data(
                                                s->data.handle, &size );
                                script_handler(c->jscontext, data, size,


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to