Module Name: src
Committed By: lukem
Date: Wed Apr 15 05:43:22 UTC 2009
Modified Files:
src/usr.sbin/dumpfs: dumpfs.c
Log Message:
Fix WARNS=4 issues (-Wsign-compare -Wextra)
To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/usr.sbin/dumpfs/dumpfs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/dumpfs/dumpfs.c
diff -u src/usr.sbin/dumpfs/dumpfs.c:1.51 src/usr.sbin/dumpfs/dumpfs.c:1.52
--- src/usr.sbin/dumpfs/dumpfs.c:1.51 Thu Aug 7 22:26:14 2008
+++ src/usr.sbin/dumpfs/dumpfs.c Wed Apr 15 05:43:22 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: dumpfs.c,v 1.51 2008/08/07 22:26:14 oster Exp $ */
+/* $NetBSD: dumpfs.c,v 1.52 2009/04/15 05:43:22 lukem Exp $ */
/*
* Copyright (c) 1983, 1992, 1993
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)dumpfs.c 8.5 (Berkeley) 4/29/95";
#else
-__RCSID("$NetBSD: dumpfs.c,v 1.51 2008/08/07 22:26:14 oster Exp $");
+__RCSID("$NetBSD: dumpfs.c,v 1.52 2009/04/15 05:43:22 lukem Exp $");
#endif
#endif /* not lint */
@@ -151,7 +151,7 @@
int
dumpfs(const char *name)
{
- const static off_t sblock_try[] = SBLOCKSEARCH;
+ static const off_t sblock_try[] = SBLOCKSEARCH;
char device[MAXPATHLEN];
int fd, i;
int rval = 1;
@@ -232,7 +232,7 @@
fix_superblock(struct fs *fs, uint16_t *opostbl)
{
if (needswap &&
- ((bswap32(fs->fs_old_postblformat) == FS_42POSTBLFMT) ||
+ (((int32_t)bswap32(fs->fs_old_postblformat) == FS_42POSTBLFMT) ||
(bswap32(fs->fs_old_postbloff) == offsetof(struct fs, fs_old_postbl_start)))) {
int i;
memcpy(opostbl, &fs->fs_old_postbl_start, 512);