Gitweb links:

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

The branch, master has been updated
       via  0a0e7b5bd74ce5c2aa9700a395fab489d30fc9b9 (commit)
      from  ae793a3ad9f9cbeb9361223258d67cf0f6daa5f3 (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=0a0e7b5bd74ce5c2aa9700a395fab489d30fc9b9
commit 0a0e7b5bd74ce5c2aa9700a395fab489d30fc9b9
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Duktape: Suppress warnings about increasing alignment of pointer type.

diff --git a/content/handlers/javascript/duktape/duktape.c 
b/content/handlers/javascript/duktape/duktape.c
index c5c3dc9..2ab8365 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -75624,7 +75624,7 @@ void 
duk_js_init_activation_environment_records_delayed(duk_hthread *thr,
 
        env = duk_create_activation_environment_record(thr, func, 
act->idx_bottom);
        DUK_ASSERT(env != NULL);
-       act = (duk_activation *) ((duk_uint8_t *) thr->callstack + act_off);
+       act = (duk_activation *) (void *) ((duk_uint8_t *) thr->callstack + 
act_off);
 
        DUK_DDD(DUK_DDDPRINT("created delayed fresh env: %!ipO", (duk_heaphdr 
*) env));
 #if defined(DUK_USE_DEBUG_LEVEL) && (DUK_USE_DEBUG_LEVEL >= 2)
@@ -76892,7 +76892,7 @@ duk_bool_t duk_js_declvar_activation(duk_hthread *thr,
        if (!act->var_env) {
                DUK_ASSERT(act->lex_env == NULL);
                duk_js_init_activation_environment_records_delayed(thr, act);
-               act = (duk_activation *) ((duk_uint8_t *) thr->callstack + 
act_off);
+               act = (duk_activation *) (void *) ((duk_uint8_t *) 
thr->callstack + act_off);
        }
        DUK_ASSERT(act->lex_env != NULL);
        DUK_ASSERT(act->var_env != NULL);


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

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

diff --git a/content/handlers/javascript/duktape/duktape.c 
b/content/handlers/javascript/duktape/duktape.c
index c5c3dc9..2ab8365 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -75624,7 +75624,7 @@ void 
duk_js_init_activation_environment_records_delayed(duk_hthread *thr,
 
        env = duk_create_activation_environment_record(thr, func, 
act->idx_bottom);
        DUK_ASSERT(env != NULL);
-       act = (duk_activation *) ((duk_uint8_t *) thr->callstack + act_off);
+       act = (duk_activation *) (void *) ((duk_uint8_t *) thr->callstack + 
act_off);
 
        DUK_DDD(DUK_DDDPRINT("created delayed fresh env: %!ipO", (duk_heaphdr 
*) env));
 #if defined(DUK_USE_DEBUG_LEVEL) && (DUK_USE_DEBUG_LEVEL >= 2)
@@ -76892,7 +76892,7 @@ duk_bool_t duk_js_declvar_activation(duk_hthread *thr,
        if (!act->var_env) {
                DUK_ASSERT(act->lex_env == NULL);
                duk_js_init_activation_environment_records_delayed(thr, act);
-               act = (duk_activation *) ((duk_uint8_t *) thr->callstack + 
act_off);
+               act = (duk_activation *) (void *) ((duk_uint8_t *) 
thr->callstack + act_off);
        }
        DUK_ASSERT(act->lex_env != NULL);
        DUK_ASSERT(act->var_env != NULL);


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