Source-Changes-HG archive

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

[src/trunk]: src/sys/miscfs/syncfs starttime needs to be time_t (Izumi Tsutsui)



details:   https://anonhg.NetBSD.org/src/rev/1942c497475c
branches:  trunk
changeset: 753583:1942c497475c
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Apr 02 19:25:21 2010 +0000

description:
starttime needs to be time_t (Izumi Tsutsui)

diffstat:

 sys/miscfs/syncfs/sync_subr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r bdccb48d7528 -r 1942c497475c sys/miscfs/syncfs/sync_subr.c
--- a/sys/miscfs/syncfs/sync_subr.c     Fri Apr 02 18:41:52 2010 +0000
+++ b/sys/miscfs/syncfs/sync_subr.c     Fri Apr 02 19:25:21 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sync_subr.c,v 1.41 2009/09/16 15:23:04 pooka Exp $     */
+/*     $NetBSD: sync_subr.c,v 1.42 2010/04/02 19:25:21 christos Exp $  */
 
 /*-
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sync_subr.c,v 1.41 2009/09/16 15:23:04 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sync_subr.c,v 1.42 2010/04/02 19:25:21 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -224,7 +224,7 @@
 {
        struct synclist *slp;
        struct vnode *vp;
-       long starttime;
+       time_t starttime;
        bool synced;
 
        updateproc = curlwp;



Home | Main Index | Thread Index | Old Index