summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plist.c b/src/plist.c
index 3314378..f62e6be 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -767,7 +767,7 @@ PLIST_API void plist_get_uint_val(plist_t node, uint64_t * val)
767 uint64_t length = 0; 767 uint64_t length = 0;
768 if (PLIST_UINT == type) 768 if (PLIST_UINT == type)
769 plist_get_type_and_value(node, &type, (void *) val, &length); 769 plist_get_type_and_value(node, &type, (void *) val, &length);
770 assert(length == sizeof(uint64_t)); 770 assert(length == sizeof(uint64_t) || length == 16);
771} 771}
772 772
773PLIST_API void plist_get_uid_val(plist_t node, uint64_t * val) 773PLIST_API void plist_get_uid_val(plist_t node, uint64_t * val)