]> git.cameronkatri.com Git - mandoc.git/blobdiff - dbm_map.c
tiny update
[mandoc.git] / dbm_map.c
index 5cb5d0f9c6a4ea1d363a34c99d160e14dcefb88d..87c085d22ec18fcccfd4bd0ce674c8976fdc485e 100644 (file)
--- a/dbm_map.c
+++ b/dbm_map.c
@@ -1,4 +1,4 @@
-/*     $Id: dbm_map.c,v 1.6 2016/10/20 16:12:56 schwarze Exp $ */
+/*     $Id: dbm_map.c,v 1.8 2017/02/17 14:43:54 schwarze Exp $ */
 /*
  * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -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;
        }
@@ -175,7 +175,7 @@ dbm_getint(int32_t offset)
 int32_t
 dbm_addr(const void *p)
 {
-       return htobe32((char *)p - dbm_base);
+       return htobe32((const char *)p - dbm_base);
 }
 
 int