From f5fb0b4cf87b50c86531a7f0e98fa0637134c925 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 30 May 2020 19:14:39 -0700 Subject: Remove pointless return in void functions [clang-tidy] Found with readability-redundant-control-flow Signed-off-by: Rosen Penev --- src/bplist.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/bplist.c') 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))) -- cgit v1.1-32-gdbae