summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2016-10-20 16:31:00 +0000
committerIngo Schwarze <schwarze@openbsd.org>2016-10-20 16:31:00 +0000
commit72b32de9c7e3efe3026cb9f5cec3aea4f0e9f121 (patch)
tree60307ea15b5039fe54b02def6743d1720e384c30
parentf1084b17d0d489eb1a9eb8ab2c62ad38ce48da33 (diff)
downloadmandoc-72b32de9c7e3efe3026cb9f5cec3aea4f0e9f121.tar.gz
0x%llu is a bad idea, make that 0x%llx;
noticed while investigating a report from Ed Maste
-rw-r--r--mandocdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mandocdb.c b/mandocdb.c
index 110bb66f..380c63cb 100644
--- a/mandocdb.c
+++ b/mandocdb.c
@@ -1739,7 +1739,7 @@ putkeys(const struct mpage *mpage, char *cp, size_t sz, uint64_t v)
name_mask &= ~NAME_FIRST;
if (debug > 1)
say(mpage->mlinks->file,
- "Adding name %*s, bits=0x%llu", (int)sz, cp, v);
+ "Adding name %*s, bits=0x%llx", (int)sz, cp, v);
} else {
htab = &strings;
if (debug > 1)