All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] efi/printf: remove unneeded semicolon
@ 2020-09-09  6:44 Tian Tao
  2020-09-09 19:01 ` Arvind Sankar
  2020-09-18  8:30 ` [tip: efi/core] " tip-bot2 for Tian Tao
  0 siblings, 2 replies; 4+ messages in thread
From: Tian Tao @ 2020-09-09  6:44 UTC (permalink / raw)
  To: ardb, nivedita, linux-efi; +Cc: linuxarm

Fix the warning below.
efi/libstub/vsprintf.c:135:2-3: Unneeded semicolon

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
---
 drivers/firmware/efi/libstub/vsprintf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/firmware/efi/libstub/vsprintf.c b/drivers/firmware/efi/libstub/vsprintf.c
index e65ef49..1088e28 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;
 }
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-09-18  8:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-09  6:44 [PATCH] efi/printf: remove unneeded semicolon Tian Tao
2020-09-09 19:01 ` Arvind Sankar
2020-09-11 15:19   ` Ard Biesheuvel
2020-09-18  8:30 ` [tip: efi/core] " tip-bot2 for Tian Tao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.