Module Name: src
Committed By: rmind
Date: Sun Jun 28 14:34:48 UTC 2009
Modified Files:
src/sys/kern: sys_pipe.c
Log Message:
Amend previous.
To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 src/sys/kern/sys_pipe.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/kern/sys_pipe.c
diff -u src/sys/kern/sys_pipe.c:1.113 src/sys/kern/sys_pipe.c:1.114
--- src/sys/kern/sys_pipe.c:1.113 Sun Jun 28 14:22:11 2009
+++ src/sys/kern/sys_pipe.c Sun Jun 28 14:34:48 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_pipe.c,v 1.113 2009/06/28 14:22:11 rmind Exp $ */
+/* $NetBSD: sys_pipe.c,v 1.114 2009/06/28 14:34:48 rmind Exp $ */
/*-
* Copyright (c) 2003, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.113 2009/06/28 14:22:11 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.114 2009/06/28 14:34:48 rmind Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -102,7 +102,7 @@
static int pipe_write(file_t *, off_t *, struct uio *, kauth_cred_t, int);
static int pipe_close(file_t *);
static int pipe_poll(file_t *, int);
-static int pipe_kqfilter(file_t **, struct knote *);
+static int pipe_kqfilter(file_t *, struct knote *);
static int pipe_stat(file_t *, struct stat *);
static int pipe_ioctl(file_t *, u_long, void *);