diff options
author | 2007-05-27 20:06:40 +0000 | |
---|---|---|
committer | 2007-05-27 20:06:40 +0000 | |
commit | cf2348b0979570b870454fa3c52e129165fdbaac (patch) | |
tree | 8544036b5564ca6ffa9895d9c89acc06e3d2df58 | |
parent | Better debug printf. (diff) | |
download | wireguard-openbsd-cf2348b0979570b870454fa3c52e129165fdbaac.tar.xz wireguard-openbsd-cf2348b0979570b870454fa3c52e129165fdbaac.zip |
use struct csum_total for superblock summary info; ok pedro@
-rw-r--r-- | sys/ufs/ffs/ffs_softdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_softdep.c b/sys/ufs/ffs/ffs_softdep.c index dc3f798e830..40f99e7a890 100644 --- a/sys/ufs/ffs/ffs_softdep.c +++ b/sys/ufs/ffs/ffs_softdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_softdep.c,v 1.87 2007/05/26 20:26:51 pedro Exp $ */ +/* $OpenBSD: ffs_softdep.c,v 1.88 2007/05/27 20:06:40 otto Exp $ */ /* * Copyright 1998, 2000 Marshall Kirk McKusick. All Rights Reserved. @@ -1248,7 +1248,7 @@ softdep_mount(devvp, mp, fs, cred) struct fs *fs; struct ucred *cred; { - struct csum cstotal; + struct csum_total cstotal; struct cg *cgp; struct buf *bp; int error, cyl; |