diff options
author | Rosen Penev | 2020-05-30 19:14:39 -0700 |
---|---|---|
committer | Nikias Bassen | 2020-06-03 19:57:18 +0200 |
commit | f5fb0b4cf87b50c86531a7f0e98fa0637134c925 (patch) | |
tree | 1513a7f3dfa163bb58fcc67c2b72ecacb74d7be1 /src/xplist.c | |
parent | e2a030a763cc8c296ae6a8edbc44e16195dae8df (diff) | |
download | libplist-f5fb0b4cf87b50c86531a7f0e98fa0637134c925.tar.gz libplist-f5fb0b4cf87b50c86531a7f0e98fa0637134c925.tar.bz2 |
Remove pointless return in void functions
[clang-tidy] Found with readability-redundant-control-flow
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/xplist.c')
-rw-r--r-- | src/xplist.c | 2 |
1 files changed, 0 insertions, 2 deletions
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) |