]> git.cameronkatri.com Git - mandoc.git/blobdiff - dbm_map.c
Remove the ENDBODY_NOSPACE flag, simplifying the code.
[mandoc.git] / dbm_map.c
index 2207b555724047faaf52cebc3e93fef0c54ced75..d158302bad6619164926de0f40ff5c19b5570989 100644 (file)
--- a/dbm_map.c
+++ b/dbm_map.c
@@ -1,4 +1,4 @@
-/*     $Id: dbm_map.c,v 1.5 2016/08/30 21:37:24 schwarze Exp $ */
+/*     $Id: dbm_map.c,v 1.7 2016/10/22 10:09:27 schwarze Exp $ */
 /*
  * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -100,8 +100,8 @@ 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 %llu (expected %d)",
-                   fname, st.st_size, max_offset);
+               warnx("dbm_map(%s): Inconsistent file size %lld (expected %d)",
+                   fname, (long long)st.st_size, max_offset);
                errno = EFTYPE;
                goto fail;
        }