From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 6a306357 for ; Sat, 22 Oct 2016 05:09:57 -0500 (EST) Date: Sat, 22 Oct 2016 05:09:57 -0500 (EST) Message-Id: <2584025208245087255.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: cast off_t and uint64_t for printf(3) to make sure that widths X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- cast off_t and uint64_t for printf(3) to make sure that widths match on all platforms; from Ed Maste ; OK guenther@ Modified Files: -------------- mdocml: dbm_map.c mandocdb.c Revision Data ------------- Index: mandocdb.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mandocdb.c,v retrieving revision 1.233 retrieving revision 1.234 diff -Lmandocdb.c -Lmandocdb.c -u -p -r1.233 -r1.234 --- mandocdb.c +++ mandocdb.c @@ -1739,7 +1739,8 @@ putkeys(const struct mpage *mpage, char name_mask &= ~NAME_FIRST; if (debug > 1) say(mpage->mlinks->file, - "Adding name %*s, bits=0x%llx", (int)sz, cp, v); + "Adding name %*s, bits=0x%llx", (int)sz, cp, + (unsigned long long)v); } else { htab = &strings; if (debug > 1) Index: dbm_map.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/dbm_map.c,v retrieving revision 1.6 retrieving revision 1.7 diff -Ldbm_map.c -Ldbm_map.c -u -p -r1.6 -r1.7 --- dbm_map.c +++ 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; } -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv