diff mbox series

tools/thermal: Remove unneeded semicolon

Message ID 1651801831-24944-1-git-send-email-baihaowen@meizu.com (mailing list archive)
State New, archived
Delegated to: Daniel Lezcano
Headers show
Series tools/thermal: Remove unneeded semicolon | expand

Commit Message

baihaowen May 6, 2022, 1:50 a.m. UTC
Fixes coccicheck warning:

tools/thermal/thermometer/thermometer.c:147:3-4: Unneeded semicolon

Signed-off-by: Haowen Bai <baihaowen@meizu.com>
---
 tools/thermal/thermometer/thermometer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Daniel Lezcano May 9, 2022, 10:11 a.m. UTC | #1
On 06/05/2022 03:50, Haowen Bai wrote:
> Fixes coccicheck warning:
> 
> tools/thermal/thermometer/thermometer.c:147:3-4: Unneeded semicolon
> 
> Signed-off-by: Haowen Bai <baihaowen@meizu.com>
> ---

Applied, thanks
diff mbox series

Patch

diff --git a/tools/thermal/thermometer/thermometer.c b/tools/thermal/thermometer/thermometer.c
index 914986f20a37..1a87a0a77f9f 100644
--- a/tools/thermal/thermometer/thermometer.c
+++ b/tools/thermal/thermometer/thermometer.c
@@ -144,7 +144,7 @@  static int configuration_init(const char *path, struct configuration *config)
 		if (!node) {
 			ERROR("Missing node name '%d'\n", i);
 			return -1;
-		};
+		}
 
 		if (!config_setting_lookup_string(node, "name", &name)) {
 			ERROR("Thermal zone name not found\n");