Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/fs/msdosfs fix DEBUG build
details: https://anonhg.NetBSD.org/src/rev/4ee66bf0efec
branches: trunk
changeset: 345100:4ee66bf0efec
user: mlelstv <mlelstv%NetBSD.org@localhost>
date: Sat May 07 16:43:02 2016 +0000
description:
fix DEBUG build
diffstat:
sys/fs/msdosfs/msdosfs_fat.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 5ef8118aaa7f -r 4ee66bf0efec sys/fs/msdosfs/msdosfs_fat.c
--- a/sys/fs/msdosfs/msdosfs_fat.c Sat May 07 16:01:00 2016 +0000
+++ b/sys/fs/msdosfs/msdosfs_fat.c Sat May 07 16:43:02 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: msdosfs_fat.c,v 1.30 2016/05/03 18:17:28 mlelstv Exp $ */
+/* $NetBSD: msdosfs_fat.c,v 1.31 2016/05/07 16:43:02 mlelstv Exp $ */
/*-
* Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -52,7 +52,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_fat.c,v 1.30 2016/05/03 18:17:28 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_fat.c,v 1.31 2016/05/07 16:43:02 mlelstv Exp $");
/*
* kernel include files.
@@ -279,7 +279,7 @@
*/
if (cn < CLUST_FIRST || cn > pmp->pm_maxcluster) {
DPRINTF(("%s(cn, %lu not in %lu..%lu)\n", __func__,
- cn, CLUST_FIRST, pmp->pm_maxcluster));
+ cn, (u_long)CLUST_FIRST, pmp->pm_maxcluster));
if (bp)
brelse(bp, 0);
return (EINVAL);
Home |
Main Index |
Thread Index |
Old Index