Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev remove extra quote
details: https://anonhg.NetBSD.org/src/rev/e48d4667de61
branches: trunk
changeset: 811320:e48d4667de61
user: christos <christos%NetBSD.org@localhost>
date: Fri Oct 23 01:34:22 2015 +0000
description:
remove extra quote
diffstat:
sys/dev/dksubr.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 5abed5886d32 -r e48d4667de61 sys/dev/dksubr.c
--- a/sys/dev/dksubr.c Fri Oct 23 01:06:20 2015 +0000
+++ b/sys/dev/dksubr.c Fri Oct 23 01:34:22 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dksubr.c,v 1.80 2015/10/23 01:06:20 christos Exp $ */
+/* $NetBSD: dksubr.c,v 1.81 2015/10/23 01:34:22 christos 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.80 2015/10/23 01:06:20 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dksubr.c,v 1.81 2015/10/23 01:34:22 christos 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=%jd", towrt=%d, "
+ DPRINTF(DKDB_DUMP, ("%s: out of bounds blkno=%jd, towrt=%d, "
"nsects=%d\n", __func__, (intmax_t)blkno, towrt, nsects));
return EINVAL;
}
Home |
Main Index |
Thread Index |
Old Index