diff options
author | Nikias Bassen | 2023-02-06 18:28:28 +0100 |
---|---|---|
committer | Nikias Bassen | 2023-02-06 18:28:28 +0100 |
commit | d3908006349f38bcfc0151daebd98b6873a2dbfc (patch) | |
tree | 238072fa5380039ad29af87c0d6e618ab37d4d5b /test/plist_cmp.c | |
parent | 52826a6c229ed3e353d4dae711a6c52a96d99764 (diff) | |
download | libplist-d3908006349f38bcfc0151daebd98b6873a2dbfc.tar.gz libplist-d3908006349f38bcfc0151daebd98b6873a2dbfc.tar.bz2 |
libcnary: Updated typedefs of node_t and node_list_t to contain pointer
This makes the code more readable. Obviously all the code that uses it
is also updated.
Diffstat (limited to 'test/plist_cmp.c')
-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) |