The branch stable/13 has been updated by des:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=9711a6d01b15b50103829e4fc9bddb7e8663a245

commit 9711a6d01b15b50103829e4fc9bddb7e8663a245
Author:     Elyes Haouas <[email protected]>
AuthorDate: 2023-03-15 02:09:16 +0000
Commit:     Dag-Erling Smørgrav <[email protected]>
CommitDate: 2026-03-04 14:46:05 +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
    (cherry picked from commit 365348f66a47df247b5289b8a86fb20b36d778c1)
---
 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 cf5cd4e15354..a6495940b342 100644
--- a/usr.sbin/lpr/lpd/recvjob.c
+++ b/usr.sbin/lpr/lpd/recvjob.c
@@ -66,7 +66,7 @@ static char sccsid[] = "@(#)recvjob.c 8.2 (Berkeley) 4/27/95";
 #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.

Reply via email to