summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2013-07-02 01:04:24 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2013-07-02 01:04:24 +0000
commit7b4c6994e0c310bfd79ccb11c41c709f549a8977 (patch)
treebc49f6b2ba9cc92f3879fd740c4b4f5515af7bf9 /sys
parent5350dee1ca64569c15266c5cfd50e10beb9a7f7b (diff)
Use time_t for storing time_t values, duh
ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/vfs_sync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_sync.c b/sys/kern/vfs_sync.c
index 46c1e8aaa81..6fbbb36a87b 100644
--- a/sys/kern/vfs_sync.c
+++ b/sys/kern/vfs_sync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_sync.c,v 1.50 2011/04/05 14:14:07 thib Exp $ */
+/* $OpenBSD: vfs_sync.c,v 1.51 2013/07/02 01:04:23 guenther Exp $ */
/*
* Portions of this code are:
@@ -137,7 +137,7 @@ sched_sync(struct proc *p)
{
struct synclist *slp;
struct vnode *vp;
- long starttime;
+ time_t starttime;
int s;
syncerproc = curproc;