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 10cb821d for ; Sat, 22 Oct 2016 05:14:11 -0500 (EST) Date: Sat, 22 Oct 2016 05:14:11 -0500 (EST) Message-Id: <7713174381371827049.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: merge 1.234: cast off_t and uint64_t for printf(3) X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- merge 1.234: cast off_t and uint64_t for printf(3) Tags: ---- VERSION_1_13 Modified Files: -------------- mdocml: mandocdb.c Revision Data ------------- Index: mandocdb.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mandocdb.c,v retrieving revision 1.220.2.3 retrieving revision 1.220.2.4 diff -Lmandocdb.c -Lmandocdb.c -u -p -r1.220.2.3 -r1.220.2.4 --- mandocdb.c +++ mandocdb.c @@ -1836,7 +1836,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) -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv