aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2026-04-02 11:21:59 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2026-04-02 11:22:14 +0000
commitc5e79c7e93dda07c383be9b99a1a91894652f546 (patch)
tree9270538012b59d256f974549b9b73dfeb54f203e
parentcf275806b6eddd66a3d82be56b3672dc5afab525 (diff)
tunefs: Don't lower WARNS
Use casts to silence the alignment warnings instead of potentially suppressing other legitimate warnings. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D56033
-rw-r--r--sbin/tunefs/Makefile2
-rw-r--r--sbin/tunefs/tunefs.c6
2 files changed, 3 insertions, 5 deletions
diff --git a/sbin/tunefs/Makefile b/sbin/tunefs/Makefile
index 4ea2219c8e03..56238b5ef673 100644
--- a/sbin/tunefs/Makefile
+++ b/sbin/tunefs/Makefile
@@ -3,6 +3,4 @@ PROG= tunefs
LIBADD= ufs util
MAN= tunefs.8
-WARNS?= 3
-
.include <bsd.prog.mk>
diff --git a/sbin/tunefs/tunefs.c b/sbin/tunefs/tunefs.c
index d5ef366e8221..d0f506557d65 100644
--- a/sbin/tunefs/tunefs.c
+++ b/sbin/tunefs/tunefs.c
@@ -640,7 +640,7 @@ dir_search(ufs2_daddr_t blk, int bytes)
return (-1);
}
for (off = 0; off < bytes; off += dp->d_reclen) {
- dp = (struct direct *)&block[off];
+ dp = (struct direct *)(uintptr_t)&block[off];
if (dp->d_reclen == 0)
break;
if (dp->d_ino == 0)
@@ -705,7 +705,7 @@ dir_clear_block(const char *block, off_t off)
struct direct *dp;
for (; off < sblock.fs_bsize; off += DIRBLKSIZ) {
- dp = (struct direct *)&block[off];
+ dp = (struct direct *)(uintptr_t)&block[off];
dp->d_ino = 0;
dp->d_reclen = DIRBLKSIZ;
dp->d_type = DT_UNKNOWN;
@@ -728,7 +728,7 @@ dir_insert(ufs2_daddr_t blk, off_t off, ino_t ino)
return (-1);
}
bzero(&block[off], sblock.fs_bsize - off);
- dp = (struct direct *)&block[off];
+ dp = (struct direct *)(uintptr_t)&block[off];
dp->d_ino = ino;
dp->d_reclen = DIRBLKSIZ;
dp->d_type = DT_REG;