diff options
author | Tian Tao <[email protected]> | 2020-09-09 14:44:32 +0800 |
---|---|---|
committer | Ard Biesheuvel <[email protected]> | 2020-09-16 18:53:42 +0300 |
commit | 5c4c30f40ca246f83b6663984dcdcbfeb0f8b66f (patch) | |
tree | 6200216231a62c8a55b8186385bfe5eca5892483 | |
parent | 762cd288fc4a24a372f36408e69b1885967f94bb (diff) |
efi/printf: remove unneeded semicolon
Fix the warning below.
efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon
Signed-off-by: Tian Tao <[email protected]>
Acked-by: Arvind Sankar <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ard Biesheuvel <[email protected]>
-rw-r--r-- | drivers/firmware/efi/libstub/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c index e65ef49a54cd..1088e288c04d 100644 --- a/drivers/firmware/efi/libstub/vsprintf.c +++ b/drivers/firmware/efi/libstub/vsprintf.c @@ -135,7 +135,7 @@ char *number(char *end, unsigned long long num, int base, char locase) break; default: unreachable(); - }; + } return end; } |