aboutsummaryrefslogtreecommitdiff
path: root/sbin/badsect
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-06-28 18:34:01 +0000
committerBruce Evans <bde@FreeBSD.org>1998-06-28 18:34:01 +0000
commit58f67986971779f9c19f3b97a4e77d8473b2b2d7 (patch)
treea7e625583bf53cc5d7cc5085114de1789ca04aee /sbin/badsect
parent86e14119e967918c0f4e466d0794734f5e49f777 (diff)
downloadsrc-58f67986971779f9c19f3b97a4e77d8473b2b2d7.tar.gz
src-58f67986971779f9c19f3b97a4e77d8473b2b2d7.zip
Fixed printf format errors.
Notes
Notes: svn path=/head/; revision=37233
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 67cc8155e8c6..a5be4174ce48 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");
}
}