summaryrefslogtreecommitdiffstats
path: root/sbin/badsect
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-06-28 18:34:01 +0000
committerbde <bde@FreeBSD.org>1998-06-28 18:34:01 +0000
commit60d69eb4f2eb2e72d199c505b78d27d167119c99 (patch)
treeafccaf9aadc331cb49c366b349b7d347246c614c /sbin/badsect
parentc142ad37ada667bbed5603074eb656dc6c9ac6e1 (diff)
downloadFreeBSD-src-60d69eb4f2eb2e72d199c505b78d27d167119c99.zip
FreeBSD-src-60d69eb4f2eb2e72d199c505b78d27d167119c99.tar.gz
Fixed printf format errors.
Diffstat (limited to 'sbin/badsect')
-rw-r--r--sbin/badsect/badsect.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sbin/badsect/badsect.c b/sbin/badsect/badsect.c
index 67cc815..a5be417 100644
--- a/sbin/badsect/badsect.c
+++ b/sbin/badsect/badsect.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static const char sccsid[] = "@(#)badsect.c 8.1 (Berkeley) 6/5/93";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: badsect.c,v 1.5 1998/06/04 06:38:03 charnier Exp $";
#endif /* not lint */
/*
@@ -128,7 +128,7 @@ main(argc, argv)
closedir(dirp);
if (dp == NULL) {
printf("Cannot find dev 0%lo corresponding to %s\n",
- stbuf.st_rdev, argv[1]);
+ (u_long)stbuf.st_rdev, argv[1]);
exit(5);
}
/*
@@ -155,7 +155,7 @@ main(argc, argv)
diskbn = dbtofsb(fs, number);
if ((dev_t)diskbn != diskbn) {
printf("sector %ld cannot be represented as a dev_t\n",
- number);
+ (long)number);
errs++;
}
else if (mknod(*argv, IFMT|0600, (dev_t)diskbn) < 0) {
@@ -177,20 +177,20 @@ chkuse(blkno, cnt)
fsbn = dbtofsb(fs, blkno);
if ((unsigned)(fsbn+cnt) > fs->fs_size) {
- printf("block %ld out of range of file system\n", blkno);
+ printf("block %ld out of range of file system\n", (long)blkno);
return (1);
}
cg = dtog(fs, fsbn);
if (fsbn < cgdmin(fs, cg)) {
if (cg == 0 || (fsbn+cnt) > cgsblock(fs, cg)) {
printf("block %ld in non-data area: cannot attach\n",
- blkno);
+ (long)blkno);
return (1);
}
} else {
if ((fsbn+cnt) > cgbase(fs, cg+1)) {
printf("block %ld in non-data area: cannot attach\n",
- blkno);
+ (long)blkno);
return (1);
}
}
@@ -203,7 +203,7 @@ chkuse(blkno, cnt)
}
bn = dtogd(fs, fsbn);
if (isclr(cg_blksfree(&acg), bn))
- printf("Warning: sector %ld is in use\n", blkno);
+ printf("Warning: sector %ld is in use\n", (long)blkno);
return (0);
}
@@ -219,12 +219,12 @@ rdfs(bno, size, bf)
int n;
if (lseek(fsi, (off_t)bno * dev_bsize, SEEK_SET) < 0) {
- printf("seek error: %ld\n", bno);
+ printf("seek error: %ld\n", (long)bno);
err(1, "rdfs");
}
n = read(fsi, bf, size);
if (n != size) {
- printf("read error: %ld\n", bno);
+ printf("read error: %ld\n", (long)bno);
err(1, "rdfs");
}
}
OpenPOWER on IntegriCloud