summaryrefslogtreecommitdiffstats
path: root/src/plist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plist.c')
-rw-r--r--src/plist.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plist.c b/src/plist.c
index 709f12d..5fc2338 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -251,14 +251,6 @@ plist_type plist_get_node_type(plist_t node)
return PLIST_NONE;
}
-uint64_t plist_get_node_uint_val(plist_t node)
-{
- if (PLIST_UINT == plist_get_node_type(node))
- return plist_get_data(node)->intval;
- else
- return 0;
-}
-
void plist_add_sub_node(plist_t node, plist_t subnode)
{
if (node && subnode) {