Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev fix build failure on i386.
details: https://anonhg.NetBSD.org/src/rev/742e130a2743
branches: trunk
changeset: 341176:742e130a2743
user: knakahara <knakahara%NetBSD.org@localhost>
date: Fri Oct 23 00:33:13 2015 +0000
description:
fix build failure on i386.
diffstat:
sys/dev/dksubr.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 4fd673c1b9f2 -r 742e130a2743 sys/dev/dksubr.c
--- a/sys/dev/dksubr.c Thu Oct 22 23:30:15 2015 +0000
+++ b/sys/dev/dksubr.c Fri Oct 23 00:33:13 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dksubr.c,v 1.78 2015/10/22 19:36:04 christos Exp $ */
+/* $NetBSD: dksubr.c,v 1.79 2015/10/23 00:33:13 knakahara Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 1999, 2002, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dksubr.c,v 1.78 2015/10/22 19:36:04 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dksubr.c,v 1.79 2015/10/23 00:33:13 knakahara Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -709,7 +709,7 @@
/* Check transfer bounds against partition size. */
if ((blkno < 0) || ((blkno + towrt) > nsects)) {
- DPRINTF(DKDB_DUMP, ("%s: out of bounds blkno=%d, towrt=%d, "
+ DPRINTF(DKDB_DUMP, ("%s: out of bounds blkno=%"PRId64", towrt=%d, "
"nsects=%d\n", __func__, blkno, towrt, nsects));
return EINVAL;
}
Home |
Main Index |
Thread Index |
Old Index