From owner-svn-src-all@FreeBSD.ORG Thu Sep 17 17:48:14 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3463106566B; Thu, 17 Sep 2009 17:48:13 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E2E5C8FC0A; Thu, 17 Sep 2009 17:48:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n8HHmDUf065385; Thu, 17 Sep 2009 17:48:13 GMT (envelope-from rdivacky@svn.freebsd.org) Received: (from rdivacky@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n8HHmDAJ065382; Thu, 17 Sep 2009 17:48:13 GMT (envelope-from rdivacky@svn.freebsd.org) Message-Id: <200909171748.n8HHmDAJ065382@svn.freebsd.org> From: Roman Divacky Date: Thu, 17 Sep 2009 17:48:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r197294 - in head/sys: kern sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2009 17:48:14 -0000 Author: rdivacky Date: Thu Sep 17 17:48:13 2009 New Revision: 197294 URL: http://svn.freebsd.org/changeset/base/197294 Log: Fix the style of the previous commit. Approved by: ed (mentor, implicit) Modified: head/sys/kern/kern_event.c head/sys/sys/event.h Modified: head/sys/kern/kern_event.c ============================================================================== --- head/sys/kern/kern_event.c Thu Sep 17 17:41:28 2009 (r197293) +++ head/sys/kern/kern_event.c Thu Sep 17 17:48:13 2009 (r197294) @@ -145,7 +145,8 @@ static int filt_timer(struct knote *kn, static int filt_userattach(struct knote *kn); static void filt_userdetach(struct knote *kn); static int filt_user(struct knote *kn, long hint); -static void filt_usertouch(struct knote *kn, struct kevent *kev, unsigned long type); +static void filt_usertouch(struct knote *kn, struct kevent *kev, + unsigned long type); static struct filterops file_filtops = { .f_isfd = 1, Modified: head/sys/sys/event.h ============================================================================== --- head/sys/sys/event.h Thu Sep 17 17:41:28 2009 (r197293) +++ head/sys/sys/event.h Thu Sep 17 17:48:13 2009 (r197294) @@ -191,7 +191,8 @@ struct filterops { int (*f_attach)(struct knote *kn); void (*f_detach)(struct knote *kn); int (*f_event)(struct knote *kn, long hint); - void (*f_touch)(struct knote *kn, struct kevent *kev, unsigned long type); + void (*f_touch)(struct knote *kn, struct kevent *kev, + unsigned long type); }; /*