summaryrefslogtreecommitdiffstats
path: root/src/bplist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bplist.c')
-rw-r--r--src/bplist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bplist.c b/src/bplist.c
index 254c0ff..8d50f2e 100644
--- a/src/bplist.c
+++ b/src/bplist.c
@@ -831,7 +831,7 @@ static plist_t parse_bin_node_at_index(struct bplist_data *bplist, uint32_t node
831 void *node_level = ptr_array_index(bplist->used_indexes, bplist->level); 831 void *node_level = ptr_array_index(bplist->used_indexes, bplist->level);
832 if (node_i == node_level) { 832 if (node_i == node_level) {
833 PLIST_BIN_ERR("recursion detected in binary plist\n"); 833 PLIST_BIN_ERR("recursion detected in binary plist\n");
834 bplist->err = PLIST_ERR_PARSE; 834 bplist->err = PLIST_ERR_CIRCULAR_REF;
835 return NULL; 835 return NULL;
836 } 836 }
837 } 837 }