diff options
Diffstat (limited to 'dbm_map.c')
-rw-r--r-- | dbm_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |