projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
762cd28
)
efi/printf: remove unneeded semicolon
author
Tian Tao
<tiantao6@hisilicon.com>
Wed, 9 Sep 2020 06:44:32 +0000
(14:44 +0800)
committer
Ard Biesheuvel
<ardb@kernel.org>
Wed, 16 Sep 2020 15:53:42 +0000
(18:53 +0300)
Fix the warning below.
efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon
Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Acked-by: Arvind Sankar <nivedita@alum.mit.edu>
Link:
https://lore.kernel.org/r/1599633872-36784-1-git-send-email-tiantao6@hisilicon.com
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
drivers/firmware/efi/libstub/vsprintf.c
patch
|
blob
|
history
diff --git
a/drivers/firmware/efi/libstub/vsprintf.c
b/drivers/firmware/efi/libstub/vsprintf.c
index e65ef49a54cdf1e797af1587e10164b401ec45f4..1088e288c04d73d6b349b229e2963b5e0e0d83ff 100644
(file)
--- 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;
}