diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/plist_cmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/plist_cmp.c b/test/plist_cmp.c index 1b4a36a..4947276 100644 --- a/test/plist_cmp.c +++ b/test/plist_cmp.c @@ -35,12 +35,12 @@ static plist_t plist_get_first_child(plist_t node) { - return (plist_t) node_first_child((node_t*) node); + return (plist_t) node_first_child((node_t) node); } static plist_t plist_get_next_sibling(plist_t node) { - return (plist_t) node_next_sibling((node_t*) node); + return (plist_t) node_next_sibling((node_t) node); } static char compare_plist(plist_t node_l, plist_t node_r) |