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 /include/hw | |
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 'include/hw')
-rw-r--r-- | include/hw/elf_ops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/elf_ops.h b/include/hw/elf_ops.h index 7c3b1d0f6c..fbe0b1e956 100644 --- a/include/hw/elf_ops.h +++ b/include/hw/elf_ops.h @@ -117,7 +117,7 @@ static void glue(load_symbols, SZ)(struct elfhdr *ehdr, int fd, int must_swab, shdr_table = load_at(fd, ehdr->e_shoff, sizeof(struct elf_shdr) * ehdr->e_shnum); if (!shdr_table) { - return ; + return; } if (must_swab) { |