diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2016-10-20 16:31:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2016-10-20 16:31:00 +0000 |
commit | 72b32de9c7e3efe3026cb9f5cec3aea4f0e9f121 (patch) | |
tree | 60307ea15b5039fe54b02def6743d1720e384c30 | |
parent | f1084b17d0d489eb1a9eb8ab2c62ad38ce48da33 (diff) | |
download | mandoc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |