Gitweb links:

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

The branch, master has been updated
       via  dc9762fef3aa5e4e026cfff49eb05466160e5442 (commit)
      from  8265b8b66f7072a659dbc0f3e50fe23d6d6a68a1 (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=dc9762fef3aa5e4e026cfff49eb05466160e5442
commit dc9762fef3aa5e4e026cfff49eb05466160e5442
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    revert 8265b8b66f7072a659dbc0f3e50fe23d6d6a68a1 as ssize_t is not available 
everywhere

diff --git a/content/handlers/javascript/duktape/duktape.c 
b/content/handlers/javascript/duktape/duktape.c
index 5b10499..91c4e65 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -35548,7 +35548,7 @@ DUK_LOCAL void duk__enc_fastint_tval(duk_json_enc_ctx 
*js_ctx, duk_tval *tv) {
         * won't work for older MSVC.
         */
        /*DUK_SPRINTF((char *) buf, "%lld", (long long) v);*/
-       DUK_SPRINTF((char *) buf, "%"PRIsizet, (ssize_t) v);
+       DUK_SPRINTF((char *) buf, "%"PRIsizet, (size_t) v);
        DUK__EMIT_CSTR(js_ctx, (const char *) buf);
 }
 #endif


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

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

diff --git a/content/handlers/javascript/duktape/duktape.c 
b/content/handlers/javascript/duktape/duktape.c
index 5b10499..91c4e65 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -35548,7 +35548,7 @@ DUK_LOCAL void duk__enc_fastint_tval(duk_json_enc_ctx 
*js_ctx, duk_tval *tv) {
         * won't work for older MSVC.
         */
        /*DUK_SPRINTF((char *) buf, "%lld", (long long) v);*/
-       DUK_SPRINTF((char *) buf, "%"PRIsizet, (ssize_t) v);
+       DUK_SPRINTF((char *) buf, "%"PRIsizet, (size_t) v);
        DUK__EMIT_CSTR(js_ctx, (const char *) buf);
 }
 #endif


-- 
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