Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/v7fs fix membername in dprintf



details:   https://anonhg.NetBSD.org/src/rev/5d9a38838d07
branches:  trunk
changeset: 359980:5d9a38838d07
user:      zafer <zafer%NetBSD.org@localhost>
date:      Sat Feb 05 14:11:52 2022 +0000

description:
fix membername in dprintf

diffstat:

 sys/fs/v7fs/v7fs_vfsops.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1bd89370189f -r 5d9a38838d07 sys/fs/v7fs/v7fs_vfsops.c
--- a/sys/fs/v7fs/v7fs_vfsops.c Sat Feb 05 10:41:15 2022 +0000
+++ b/sys/fs/v7fs/v7fs_vfsops.c Sat Feb 05 14:11:52 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: v7fs_vfsops.c,v 1.17 2020/01/17 20:08:09 ad Exp $      */
+/*     $NetBSD: v7fs_vfsops.c,v 1.18 2022/02/05 14:11:52 zafer Exp $   */
 
 /*-
  * Copyright (c) 2004, 2011 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: v7fs_vfsops.c,v 1.17 2020/01/17 20:08:09 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: v7fs_vfsops.c,v 1.18 2022/02/05 14:11:52 zafer Exp $");
 #if defined _KERNEL_OPT
 #include "opt_v7fs.h"
 #endif
@@ -198,7 +198,7 @@
                DPRINTF("getdiskinfo=%d\n", error);
                return error;
        }
-       DPRINTF("ptype=%s size=%" PRIu64 "\n", dkw.dkw_ptype, dkw->dkw_size);
+       DPRINTF("ptype=%s size=%" PRIu64 "\n", dkw.dkw_ptype, dkw.dkw_size);
 
        return strcmp(dkw.dkw_ptype, DKW_PTYPE_V7) == 0 ? 0 : EINVAL;
 }



Home | Main Index | Thread Index | Old Index