Gitweb links:

...log 
http://git.netsurf-browser.org/libdom.git/shortlog/49fb399f1b5d349f2991c82d5e6c7216e4cbeebb
...commit 
http://git.netsurf-browser.org/libdom.git/commit/49fb399f1b5d349f2991c82d5e6c7216e4cbeebb
...tree 
http://git.netsurf-browser.org/libdom.git/tree/49fb399f1b5d349f2991c82d5e6c7216e4cbeebb

The branch, master has been updated
       via  49fb399f1b5d349f2991c82d5e6c7216e4cbeebb (commit)
      from  e88d4fca84e8fa8f9a6e830178a54e1912449e87 (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/libdom.git/commit/?id=49fb399f1b5d349f2991c82d5e6c7216e4cbeebb
commit 49fb399f1b5d349f2991c82d5e6c7216e4cbeebb
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Attempt to fix m68k cross-compile warnings.

diff --git a/src/html/html_tablerow_element.c b/src/html/html_tablerow_element.c
index 0cc2b7c..fe7d929 100644
--- a/src/html/html_tablerow_element.c
+++ b/src/html/html_tablerow_element.c
@@ -354,7 +354,7 @@ dom_exception dom_html_table_row_element_insert_cell(
                int32_t index, dom_html_element **cell) {
        dom_html_document *doc = (dom_html_document *) ((dom_node_internal *) 
element)->owner;
 
-       dom_node *new_cell;
+       dom_html_element *new_cell;
 
        dom_html_collection *cells;     /*< The collection of cells in input 
table_row_element*/
        uint32_t len;                   /*< The size of the cell collection */
@@ -368,7 +368,7 @@ dom_exception dom_html_table_row_element_insert_cell(
                .prefix = ((dom_node_internal *)element)->prefix
        };
 
-       exp = _dom_html_element_create(&params, (dom_html_element **)&new_cell);
+       exp = _dom_html_element_create(&params, &new_cell);
        if (exp != DOM_NO_ERR)
                return exp;
        


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

Summary of changes:
 src/html/html_tablerow_element.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/html/html_tablerow_element.c b/src/html/html_tablerow_element.c
index 0cc2b7c..fe7d929 100644
--- a/src/html/html_tablerow_element.c
+++ b/src/html/html_tablerow_element.c
@@ -354,7 +354,7 @@ dom_exception dom_html_table_row_element_insert_cell(
                int32_t index, dom_html_element **cell) {
        dom_html_document *doc = (dom_html_document *) ((dom_node_internal *) 
element)->owner;
 
-       dom_node *new_cell;
+       dom_html_element *new_cell;
 
        dom_html_collection *cells;     /*< The collection of cells in input 
table_row_element*/
        uint32_t len;                   /*< The size of the cell collection */
@@ -368,7 +368,7 @@ dom_exception dom_html_table_row_element_insert_cell(
                .prefix = ((dom_node_internal *)element)->prefix
        };
 
-       exp = _dom_html_element_create(&params, (dom_html_element **)&new_cell);
+       exp = _dom_html_element_create(&params, &new_cell);
        if (exp != DOM_NO_ERR)
                return exp;
        


-- 
Document Object Model library

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

Reply via email to