summaryrefslogtreecommitdiffstats
path: root/sbin/dump/traverse.c
diff options
context:
space:
mode:
authoriedowse <iedowse@FreeBSD.org>2002-07-08 00:29:23 +0000
committeriedowse <iedowse@FreeBSD.org>2002-07-08 00:29:23 +0000
commit40ca2ecbc9f6ce1f972e08a815b371f861c6f3a4 (patch)
tree12211ae730177499e4d487794e91aba516fe3654 /sbin/dump/traverse.c
parentd67ae5f23f51adbdba955a259dd097c0d690715b (diff)
downloadFreeBSD-src-40ca2ecbc9f6ce1f972e08a815b371f861c6f3a4.zip
FreeBSD-src-40ca2ecbc9f6ce1f972e08a815b371f861c6f3a4.tar.gz
Replace the use of %qd with intmax_t/%jd and fix a number of -Wall
and -Wformat warnings: o Include timeconv.h for the time conversion functions. o Remove unused variables. o Correct a few cases where %d was used when printing longs.
Diffstat (limited to 'sbin/dump/traverse.c')
-rw-r--r--sbin/dump/traverse.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/sbin/dump/traverse.c b/sbin/dump/traverse.c
index 5480663..bd01ecb 100644
--- a/sbin/dump/traverse.c
+++ b/sbin/dump/traverse.c
@@ -49,11 +49,13 @@ static const char rcsid[] =
#include <protocols/dumprestore.h>
#include <ctype.h>
-#include <stdio.h>
#include <errno.h>
+#include <inttypes.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
+#include <timeconv.h>
#include <unistd.h>
-#include <stdlib.h>
#include "dump.h"
@@ -388,8 +390,6 @@ searchdir(
void
dumpino(union dinode *dp, ino_t ino)
{
- struct ufs1_dinode *dp1;
- struct ufs2_dinode *dp2;
int ind_level, cnt;
off_t size;
char buf[TP_BSIZE];
@@ -705,11 +705,11 @@ loop:
goto loop;
}
if (cnt == -1)
- msg("read error from %s: %s: [block %qd]: count=%d\n",
- disk, strerror(errno), blkno, size);
+ msg("read error from %s: %s: [block %jd]: count=%d\n",
+ disk, strerror(errno), (intmax_t)blkno, size);
else
- msg("short read error from %s: [block %qd]: count=%d, got=%d\n",
- disk, blkno, size, cnt);
+ msg("short read error from %s: [block %jd]: count=%d, got=%d\n",
+ disk, (intmax_t)blkno, size, cnt);
if (++breaderrors > BREADEMAX) {
msg("More than %d block read errors from %s\n",
BREADEMAX, disk);
@@ -730,11 +730,11 @@ loop:
((off_t)blkno << dev_bshift))) == dev_bsize)
continue;
if (cnt == -1) {
- msg("read error from %s: %s: [sector %qd]: count=%d\n",
- disk, strerror(errno), blkno, dev_bsize);
+ msg("read error from %s: %s: [sector %jd]: count=%ld\n",
+ disk, strerror(errno), (intmax_t)blkno, dev_bsize);
continue;
}
- msg("short read error from %s: [sector %qd]: count=%d, got=%d\n",
- disk, blkno, dev_bsize, cnt);
+ msg("short read from %s: [sector %jd]: count=%ld, got=%d\n",
+ disk, (intmax_t)blkno, dev_bsize, cnt);
}
}
OpenPOWER on IntegriCloud