summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorkent <kent@NetBSD.org>2005-08-20 14:58:34 +0000
committerkent <kent@NetBSD.org>2005-08-20 14:58:34 +0000
commit8dbae00531e02b3bdba4eabeeaca48d06cbd76cc (patch)
tree3960569599c18f60e683820259af58b73d6d30a6 /libexec
parente6c72964500e6c2077d0982a4718a2712ebc4dd4 (diff)
fix compilation problem on LP64
Diffstat (limited to 'libexec')
-rw-r--r--libexec/lfs_cleanerd/library.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/lfs_cleanerd/library.c b/libexec/lfs_cleanerd/library.c
index 745d7104c6b..5676f1a4179 100644
--- a/libexec/lfs_cleanerd/library.c
+++ b/libexec/lfs_cleanerd/library.c
@@ -1,4 +1,4 @@
-/* $NetBSD: library.c,v 1.44 2005/08/19 02:06:29 christos Exp $ */
+/* $NetBSD: library.c,v 1.45 2005/08/20 14:58:34 kent Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)library.c 8.3 (Berkeley) 5/24/95";
#else
-__RCSID("$NetBSD: library.c,v 1.44 2005/08/19 02:06:29 christos Exp $");
+__RCSID("$NetBSD: library.c,v 1.45 2005/08/20 14:58:34 kent Exp $");
#endif
#endif /* not lint */
@@ -798,7 +798,7 @@ bi_compare(const void *a, const void *b)
if ((diff = (int)(ba->bi_daddr - bb->bi_daddr)))
return (diff);
if(ba->bi_inode != LFS_IFILE_INUM && debug)
- syslog(LOG_DEBUG,"bi_compare: using kludge on ino %llu!",
+ syslog(LOG_DEBUG,"bi_compare: using kludge on ino %" PRIu64 "!",
ba->bi_inode);
diff = ba->bi_size - bb->bi_size;
return diff;