Module Name:    src
Committed By:   chs
Date:           Fri Jun  9 00:13:09 UTC 2017

Modified Files:
        src/sbin/fsck_lfs: vnode.h

Log Message:
this file uses the <sys/queue.h> macros so it should include
that header itself, rather than relying on getting it indirectly
by including some other header.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 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.4 src/sbin/fsck_lfs/vnode.h:1.5
--- src/sbin/fsck_lfs/vnode.h:1.4	Mon Apr 28 20:23:08 2008
+++ src/sbin/fsck_lfs/vnode.h	Fri Jun  9 00:13:08 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: vnode.h,v 1.4 2008/04/28 20:23:08 martin Exp $ */
+/* $NetBSD: vnode.h,v 1.5 2017/06/09 00:13:08 chs Exp $ */
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -28,6 +28,8 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/queue.h>
+
 #define VNODE_HASH_MAX   1024 /* Must be a PO2 */
 #define VNODE_CACHE_SIZE 1024 /* Need not be a PO2 */
 

Reply via email to