git: 94dcc95fdf45 - main - pmccontrol: Remove trailing semicolon

From: Warner Losh <imp_at_FreeBSD.org>
Date: Wed, 15 Mar 2023 02:39:44 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=94dcc95fdf45eff1dc25d2a51f074684c265ba2e

commit 94dcc95fdf45eff1dc25d2a51f074684c265ba2e
Author:     Elyes Haouas <ehaouas@noos.fr>
AuthorDate: 2023-03-15 02:09:16 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-03-15 02:39:34 +0000

    pmccontrol: Remove trailing semicolon
    
    Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/654
---
 usr.sbin/pmccontrol/pmccontrol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/pmccontrol/pmccontrol.c b/usr.sbin/pmccontrol/pmccontrol.c
index 9d57a2923784..1130c2c07b20 100644
--- a/usr.sbin/pmccontrol/pmccontrol.c
+++ b/usr.sbin/pmccontrol/pmccontrol.c
@@ -101,7 +101,7 @@ static FILE *debug_stream = NULL;
 
 #if DEBUG
 #define DEBUG_MSG(...)					                \
-	(void) fprintf(debug_stream, "[pmccontrol] " __VA_ARGS__);
+	(void) fprintf(debug_stream, "[pmccontrol] " __VA_ARGS__)
 #else
 #define DEBUG_MSG(m)		/*  */
 #endif /* !DEBUG */