summaryrefslogtreecommitdiffstats
path: root/dbm_map.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2016-10-22 10:09:27 +0000
committerIngo Schwarze <schwarze@openbsd.org>2016-10-22 10:09:27 +0000
commitd8daf28b297263d3a9feeaf27a7095ebf4ebbd9b (patch)
treecb165d4bac8dc2d7b20064db890f0e19ef45fd86 /dbm_map.c
parentac392c19f6919943ac4f940c8b6468bf59ffc6b0 (diff)
downloadmandoc-d8daf28b297263d3a9feeaf27a7095ebf4ebbd9b.tar.gz
cast off_t and uint64_t for printf(3)
to make sure that widths match on all platforms; from Ed Maste <emaste at freebsd dot org>; OK guenther@
Diffstat (limited to 'dbm_map.c')
-rw-r--r--dbm_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbm_map.c b/dbm_map.c
index 63b7cfa2..0c1f5eeb 100644
--- a/dbm_map.c
+++ b/dbm_map.c
@@ -101,7 +101,7 @@ dbm_map(const char *fname)
max_offset = be32toh(*dbm_getint(3)) + sizeof(int32_t);
if (st.st_size != max_offset) {
warnx("dbm_map(%s): Inconsistent file size %lld (expected %d)",
- fname, st.st_size, max_offset);
+ fname, (long long)st.st_size, max_offset);
errno = EFTYPE;
goto fail;
}