diff options
| author | Elyes Haouas <ehaouas@noos.fr> | 2023-03-15 02:09:16 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2023-03-15 02:39:34 +0000 |
| commit | 94dcc95fdf45eff1dc25d2a51f074684c265ba2e (patch) | |
| tree | c9319d91dbdded192048bd60b5047d73de5db16b | |
| parent | 365348f66a47df247b5289b8a86fb20b36d778c1 (diff) | |
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
| -rw-r--r-- | usr.sbin/pmccontrol/pmccontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |
