Module Name: src
Committed By: pgoyette
Date: Wed May 17 05:31:08 UTC 2017
Modified Files:
src/sys/ufs/ext2fs [prg-localcount2]: ext2fs_vfsops.c
Log Message:
Typo - insert missing *
To generate a diff of this commit:
cvs rdiff -u -r1.208.2.1 -r1.208.2.2 src/sys/ufs/ext2fs/ext2fs_vfsops.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/ufs/ext2fs/ext2fs_vfsops.c
diff -u src/sys/ufs/ext2fs/ext2fs_vfsops.c:1.208.2.1 src/sys/ufs/ext2fs/ext2fs_vfsops.c:1.208.2.2
--- src/sys/ufs/ext2fs/ext2fs_vfsops.c:1.208.2.1 Wed May 17 04:08:36 2017
+++ src/sys/ufs/ext2fs/ext2fs_vfsops.c Wed May 17 05:31:08 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: ext2fs_vfsops.c,v 1.208.2.1 2017/05/17 04:08:36 pgoyette Exp $ */
+/* $NetBSD: ext2fs_vfsops.c,v 1.208.2.2 2017/05/17 05:31:08 pgoyette Exp $ */
/*
* Copyright (c) 1989, 1991, 1993, 1994
@@ -60,7 +60,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ext2fs_vfsops.c,v 1.208.2.1 2017/05/17 04:08:36 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ext2fs_vfsops.c,v 1.208.2.2 2017/05/17 05:31:08 pgoyette Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@@ -301,7 +301,7 @@ ext2fs_mountroot(void)
int
ext2fs_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
{
- const struct bdevsw devsw;
+ const struct bdevsw *devsw;
struct lwp *l = curlwp;
struct vnode *devvp;
struct ufs_args *args = data;