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, 0 insertions, 2 deletions
diff --git a/src/bplist.c b/src/bplist.c
index 14db755..24326b7 100644
--- a/src/bplist.c
+++ b/src/bplist.c
@@ -941,8 +941,6 @@ static void serialize_plist(node_t* node, void* data)
for (ch = node_first_child(node); ch; ch = node_next_sibling(ch)) {
serialize_plist(ch, data);
}
-
- return;
}
#define Log2(x) (x == 8 ? 3 : (x == 4 ? 2 : (x == 2 ? 1 : 0)))