fix compilation problem on LP64

This commit is contained in:
kent 2005-08-20 14:58:34 +00:00
parent e6c7296450
commit 8dbae00531
1 changed files with 3 additions and 3 deletions

View File

@ -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;