diff options
author | Bin Meng <bmeng@tinylab.org> | 2022-10-24 15:28:02 +0800 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2022-10-24 13:41:10 +0200 |
commit | c1dadb8462ff5021218f2c1aa015594952f441ca (patch) | |
tree | b263025d7ce8b2da1406793b869388cc9aedeb6f /hw/9pfs/9p.c | |
parent | fe8a7390c10c78b806211d7e36727c461d39a17f (diff) |
treewide: Remove the unnecessary space before semicolon
%s/return ;/return;
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Message-Id: <20221024072802.457832-1-bmeng@tinylab.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/9pfs/9p.c')
-rw-r--r-- | hw/9pfs/9p.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c index aebadeaa03..76c591a01b 100644 --- a/hw/9pfs/9p.c +++ b/hw/9pfs/9p.c @@ -1786,7 +1786,7 @@ static void coroutine_fn v9fs_walk(void *opaque) err = pdu_unmarshal(pdu, offset, "ddw", &fid, &newfid, &nwnames); if (err < 0) { pdu_complete(pdu, err); - return ; + return; } offset += err; |