git: fd52a9becc62 - main - diff3: Use a format string to quiet a compiler warning
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 13 Feb 2026 20:20:04 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=fd52a9becc62f721ad6a61c7301559afaedee010
commit fd52a9becc62f721ad6a61c7301559afaedee010
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-11-18 13:21:03 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-02-13 20:19:58 +0000
diff3: Use a format string to quiet a compiler warning
And bump WARNS to 2
---
contrib/diff/src/diff3.c | 2 +-
gnu/usr.bin/diff3/Makefile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/diff/src/diff3.c b/contrib/diff/src/diff3.c
index d0e8137756db..3062f3419865 100644
--- a/contrib/diff/src/diff3.c
+++ b/contrib/diff/src/diff3.c
@@ -1405,7 +1405,7 @@ output_diff3 (FILE *outputfile, struct diff3_block *diff,
line = 0;
do
{
- fprintf (outputfile, line_prefix);
+ fprintf (outputfile, "%s", line_prefix);
cp = D_RELNUM (ptr, realfile, line);
length = D_RELLEN (ptr, realfile, line);
fwrite (cp, sizeof (char), length, outputfile);
diff --git a/gnu/usr.bin/diff3/Makefile b/gnu/usr.bin/diff3/Makefile
index 568733801a6b..8774039b5d08 100644
--- a/gnu/usr.bin/diff3/Makefile
+++ b/gnu/usr.bin/diff3/Makefile
@@ -17,6 +17,6 @@ CFLAGS+=-I${SRCTOP}/contrib/diff/lib
CFLAGS+=-DHAVE_CONFIG_H
CFLAGS+=-DDEFAULT_DIFF_PROGRAM=\"/usr/bin/diff\"
-WARNS?= 0
+WARNS?= 2
.include <bsd.prog.mk>