Module Name: src Committed By: christos Date: Fri Sep 17 22:41:48 UTC 2021
Modified Files: src/sbin/fsck_lfs: vnode.h Log Message: Fix the function pointer declaration to something lint likes. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sbin/fsck_lfs/vnode.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sbin/fsck_lfs/vnode.h diff -u src/sbin/fsck_lfs/vnode.h:1.5 src/sbin/fsck_lfs/vnode.h:1.6 --- src/sbin/fsck_lfs/vnode.h:1.5 Thu Jun 8 20:13:08 2017 +++ src/sbin/fsck_lfs/vnode.h Fri Sep 17 18:41:48 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: vnode.h,v 1.5 2017/06/09 00:13:08 chs Exp $ */ +/* $NetBSD: vnode.h,v 1.6 2021/09/17 22:41:48 christos Exp $ */ /*- * Copyright (c) 2003 The NetBSD Foundation, Inc. * All rights reserved. @@ -72,5 +72,5 @@ int raw_vop_bmap(struct uvnode *, daddr_ void vnode_destroy(struct uvnode *); struct uvnode *vget(void *, ino_t); -void register_vget(void *, struct uvnode *(void *, ino_t)); +void register_vget(void *, struct uvnode *(*)(void *, ino_t)); void vfs_init(void);