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/xplist.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/xplist.c') diff --git a/src/xplist.c b/src/xplist.c index a7d52e5..537d315 100644 --- a/src/xplist.c +++ b/src/xplist.c @@ -370,8 +370,6 @@ static void node_to_xml(node_t* node, bytearray_t **outbuf, uint32_t depth) str_buf_append(*outbuf, ">", 1); } str_buf_append(*outbuf, "\n", 1); - - return; } static void parse_date(const char *strval, struct TM *btime) -- cgit v1.1-32-gdbae