Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ufs/lfs whoops, fix 32-bit build



details:   https://anonhg.NetBSD.org/src/rev/494324c33d40
branches:  trunk
changeset: 809812:494324c33d40
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Aug 02 20:23:21 2015 +0000

description:
whoops, fix 32-bit build

diffstat:

 sys/ufs/lfs/lfs_inode.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 9c858b5db52c -r 494324c33d40 sys/ufs/lfs/lfs_inode.c
--- a/sys/ufs/lfs/lfs_inode.c   Sun Aug 02 18:18:46 2015 +0000
+++ b/sys/ufs/lfs/lfs_inode.c   Sun Aug 02 20:23:21 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: lfs_inode.c,v 1.142 2015/08/02 18:12:41 dholland Exp $ */
+/*     $NetBSD: lfs_inode.c,v 1.143 2015/08/02 20:23:21 dholland Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lfs_inode.c,v 1.142 2015/08/02 18:12:41 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lfs_inode.c,v 1.143 2015/08/02 20:23:21 dholland Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_quota.h"
@@ -207,7 +207,7 @@
        struct lfs *fs;
        struct buf *bp;
        int offset, size, level;
-       long count, rcount;
+       daddr_t count, rcount;
        daddr_t blocksreleased = 0, real_released = 0;
        int i, nblocks;
        int aflags, error, allerror = 0;



Home | Main Index | Thread Index | Old Index