Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Mar 2023 02:39:44 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 94dcc95fdf45 - main - pmccontrol: Remove trailing semicolon
Message-ID:  <202303150239.32F2diwf060169@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202303150239.32F2diwf060169>