diff options
author | Jonathan Beck | 2010-01-21 21:19:41 +0100 |
---|---|---|
committer | Jonathan Beck | 2010-01-21 21:19:41 +0100 |
commit | babec330acced3915332fa9a09b8252cfa99cf34 (patch) | |
tree | e5fdbcde4e3296b55f441012ec8f66b74ef286d1 /test/plist_cmp.c | |
parent | 874942ec1600773622238ae28544908d292ef339 (diff) | |
download | libplist-babec330acced3915332fa9a09b8252cfa99cf34.tar.gz libplist-babec330acced3915332fa9a09b8252cfa99cf34.tar.bz2 |
Fix some warnings
Diffstat (limited to 'test/plist_cmp.c')
-rw-r--r-- | test/plist_cmp.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/plist_cmp.c b/test/plist_cmp.c index dcf961f..af54c4c 100644 --- a/test/plist_cmp.c +++ b/test/plist_cmp.c @@ -43,12 +43,7 @@ static plist_t plist_get_next_sibling(plist_t node) return (plist_t) g_node_next_sibling((GNode *) node); } -static plist_t plist_get_prev_sibling(plist_t node) -{ - return (plist_t) g_node_prev_sibling((GNode *) node); -} - -char compare_plist(plist_t node_l, plist_t node_r) +static char compare_plist(plist_t node_l, plist_t node_r) { plist_t cur_l = NULL; plist_t cur_r = NULL; |