The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=365348f66a47df247b5289b8a86fb20b36d778c1
commit 365348f66a47df247b5289b8a86fb20b36d778c1 Author: Elyes Haouas <[email protected]> AuthorDate: 2023-03-15 02:09:16 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2023-03-15 02:39:34 +0000 lpr: Remove trailing semicolon Signed-off-by: Elyes Haouas <[email protected]> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/654 --- usr.sbin/lpr/lpd/recvjob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/lpr/lpd/recvjob.c b/usr.sbin/lpr/lpd/recvjob.c index 890ede4bcbf8..a6e93019481a 100644 --- a/usr.sbin/lpr/lpd/recvjob.c +++ b/usr.sbin/lpr/lpd/recvjob.c @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); #include "extern.h" #include "pathnames.h" -#define ack() (void) write(STDOUT_FILENO, sp, (size_t)1); +#define ack() (void) write(STDOUT_FILENO, sp, (size_t)1) /* * The buffer size to use when reading/writing spool files.
