Gitweb links:

...log 
http://git.netsurf-browser.org/libdom.git/shortlog/7dd1e0193cb430622932b04a718df4784a02d201
...commit 
http://git.netsurf-browser.org/libdom.git/commit/7dd1e0193cb430622932b04a718df4784a02d201
...tree 
http://git.netsurf-browser.org/libdom.git/tree/7dd1e0193cb430622932b04a718df4784a02d201

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

    Attempt to squash m68k cross-compile warnings.

diff --git a/src/html/html_tablesection_element.c 
b/src/html/html_tablesection_element.c
index e2cd3dd..f839758 100644
--- a/src/html/html_tablesection_element.c
+++ b/src/html/html_tablesection_element.c
@@ -235,7 +235,7 @@ dom_exception dom_html_table_section_element_insert_row(
        dom_html_collection *rows;      /*< The collection of rows in input 
table_section_element*/
        uint32_t len;                   /*< The size of the row collection */
        dom_exception exp;              /*< Variable for getting the 
exceptions*/
-       dom_html_table_row_element *new_node;
+       dom_node *new_node;
 
        struct dom_html_element_create_params params = {
                .type = DOM_HTML_ELEMENT_TYPE_TR,
@@ -246,7 +246,7 @@ dom_exception dom_html_table_section_element_insert_row(
        };
 
        exp = _dom_html_table_row_element_create(&params,
-                       (dom_html_table_row_element **)&new_node);
+                       (dom_html_table_row_element **)(void *) &new_node);
        if(exp != DOM_NO_ERR)
                return exp;
        


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

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

diff --git a/src/html/html_tablesection_element.c 
b/src/html/html_tablesection_element.c
index e2cd3dd..f839758 100644
--- a/src/html/html_tablesection_element.c
+++ b/src/html/html_tablesection_element.c
@@ -235,7 +235,7 @@ dom_exception dom_html_table_section_element_insert_row(
        dom_html_collection *rows;      /*< The collection of rows in input 
table_section_element*/
        uint32_t len;                   /*< The size of the row collection */
        dom_exception exp;              /*< Variable for getting the 
exceptions*/
-       dom_html_table_row_element *new_node;
+       dom_node *new_node;
 
        struct dom_html_element_create_params params = {
                .type = DOM_HTML_ELEMENT_TYPE_TR,
@@ -246,7 +246,7 @@ dom_exception dom_html_table_section_element_insert_row(
        };
 
        exp = _dom_html_table_row_element_create(&params,
-                       (dom_html_table_row_element **)&new_node);
+                       (dom_html_table_row_element **)(void *) &new_node);
        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